diff --git a/verl/utils/reward_score/__init__.py b/verl/utils/reward_score/__init__.py index f53662c1..ee8fbb60 100644 --- a/verl/utils/reward_score/__init__.py +++ b/verl/utils/reward_score/__init__.py @@ -14,7 +14,7 @@ # from . import gsm8k, math, prime_math, prime_code -def _default_compute_score(data_source, solution_str, ground_truth): +def _default_compute_score(data_source, solution_str, ground_truth, extra_info): if data_source == 'openai/gsm8k': from . import gsm8k res = gsm8k.compute_score(solution_str, ground_truth)