We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd13dcd commit 8ab1e82Copy full SHA for 8ab1e82
slime/utils/arguments.py
@@ -1672,9 +1672,10 @@ def slime_validate_args(args):
1672
assert not args.use_tis, "use_rollout_logprobs and use_tis cannot be set at the same time."
1673
1674
if args.get_mismatch_metrics:
1675
- assert (
1676
- args.custom_tis_function_path is not None
1677
- ), "custom_tis_function_path must be set when get_mismatch_metrics is set"
+ if args.custom_tis_function_path is None:
+ logger.warning(
+ "get_mismatch_metrics is set but custom_tis_function_path is None. Using default vanilla_tis_function for metrics calculation."
1678
+ )
1679
1680
if args.use_rollout_logprobs:
1681
logger.info(
0 commit comments