Skip to content

Commit

Permalink
don't exclude argparse arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
jmercat committed Jan 22, 2025
1 parent 20cd486 commit c4601d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eval/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def setup_custom_parser():
Create a custom argument parser that extends lm-eval-harness parser.
"""
parser = setup_parser()
db_group = parser.add_mutually_exclusive_group()
db_group = parser.add_argument_group("database")

db_group.add_argument("--model_id", type=str, default=None, help="Model UUID for direct database tracking")

Expand Down

0 comments on commit c4601d8

Please sign in to comment.