We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc4592 commit dbeb432Copy full SHA for dbeb432
eval_protocol/cli_commands/create_rft.py
@@ -634,6 +634,9 @@ def _create_rft_job(
634
635
args_dict = vars(args)
636
for name in signature.parameters:
637
+ # Do NOT let raw CLI args overwrite the normalized resources passed into this function.
638
+ if name in ("dataset", "evaluator"):
639
+ continue
640
prefix = name + "_"
641
642
# Collect "flattened" argparse fields back into the nested dict expected by the SDK.
0 commit comments