-
Couldn't load subscription status.
- Fork 677
[Feature] Add CascadeEvaluator #1992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
|
|
||
| from mmengine.config import read_base | ||
|
|
||
| from opencompass.openicl.icl_prompt_template import PromptTemplate | ||
| from opencompass.openicl.icl_retriever import ZeroRetriever | ||
| from opencompass.openicl.icl_inferencer import GenInferencer | ||
| from opencompass.openicl.icl_prompt_template import PromptTemplate | ||
| from opencompass.openicl.icl_retriever import ZeroRetriever | ||
| from opencompass.openicl.icl_inferencer import GenInferencer | ||
| from opencompass.evaluator import GenericLLMEvaluator, CascadeEvaluator | ||
| from opencompass.datasets import generic_llmjudge_postprocess | ||
| from opencompass.openicl.icl_evaluator import MATHEvaluator | ||
| from opencompass.datasets import ( | ||
| MATHDataset, | ||
| math_postprocess_v2, | ||
| normalize_final_answer, | ||
| ) | ||
| ####################################################################### | ||
| # PART 0 Essential Configs # | ||
| ####################################################################### | ||
|
|
||
| with read_base(): | ||
| # Datasets, Summarizer | ||
| from opencompass.configs.models.qwen2_5.lmdeploy_qwen2_5_7b_instruct import ( | ||
| models as lmdeploy_qwen2_5_7b_instruct_model, | ||
| ) | ||
|
|
||
| reader_cfg = dict(input_columns=['problem'], output_column='solution') | ||
|
|
||
| infer_cfg = dict( | ||
| prompt_template=dict( | ||
| type=PromptTemplate, | ||
| template=dict( | ||
| round=[ | ||
| dict( | ||
| role='HUMAN', | ||
| prompt='{problem}\nPlease reason step by step, and put your final answer within \\boxed{}.', | ||
| ), | ||
| ] | ||
| ), | ||
| ), | ||
| retriever=dict(type=ZeroRetriever), | ||
| inferencer=dict(type=GenInferencer), | ||
| ) | ||
|
|
||
| ########################## Evaluator ################################# | ||
| GRADER_TEMPLATE = """ | ||
| Please as a grading expert, judge whether the final answers given by the candidates below are consistent with the standard answers, that is, whether the candidates answered correctly. | ||
|
|
||
| Here are some evaluation criteria: | ||
| 1. Please refer to the given standard answer. You don't need to re-generate the answer to the question because the standard answer has been given. You only need to judge whether the candidate's answer is consistent with the standard answer according to the form of the question. Don't try to answer the original question. You can assume that the standard answer is definitely correct. | ||
| 2. Because the candidate's answer may be different from the standard answer in the form of expression, before making a judgment, please understand the question and the standard answer first, and then judge whether the candidate's answer is correct, but be careful not to try to answer the original question. | ||
| 3. Some answers may contain multiple items, such as multiple-choice questions, multiple-select questions, fill-in-the-blank questions, etc. As long as the answer is the same as the standard answer, it is enough. For multiple-select questions and multiple-blank fill-in-the-blank questions, the candidate needs to answer all the corresponding options or blanks correctly to be considered correct. | ||
| 4. Some answers may be expressed in different ways, such as some answers may be a mathematical expression, some answers may be a textual description, as long as the meaning expressed is the same. And some formulas are expressed in different ways, but they are equivalent and correct. | ||
| 5. If the prediction is given with \\boxed{}, please ignore the \\boxed{} and only judge whether the candidate's answer is consistent with the standard answer. | ||
|
|
||
| Please judge whether the following answers are consistent with the standard answer based on the above criteria. Grade the predicted answer of this new question as one of: | ||
| A: CORRECT | ||
| B: INCORRECT | ||
| Just return the letters "A" or "B", with no text around it. | ||
|
|
||
| Here is your task. Simply reply with either CORRECT, INCORRECT. Don't apologize or correct yourself if there was a mistake; we are just trying to grade the answer. | ||
|
|
||
|
|
||
| <Original Question Begin>: \n{problem}\n<Original Question End>\n\n | ||
| <Gold Target Begin>: \n{solution}\n<Gold Target End>\n\n | ||
| <Predicted Answer Begin>: \n{prediction}\n<Predicted End>\n\n | ||
|
|
||
| Judging the correctness of candidates' answers: | ||
| """.strip() | ||
|
|
||
| llm_judge_evaluator = dict( | ||
| type=GenericLLMEvaluator, | ||
| prompt_template=dict( | ||
| type=PromptTemplate, | ||
| template=dict( | ||
| begin=[ | ||
| dict( | ||
| role='SYSTEM', | ||
| fallback_role='HUMAN', | ||
| prompt="You are a helpful assistant who evaluates the correctness and quality of models' outputs.", | ||
| ) | ||
| ], | ||
| round=[ | ||
| dict(role='HUMAN', prompt=GRADER_TEMPLATE), | ||
| ], | ||
| ), | ||
| ), | ||
| dataset_cfg=dict( | ||
| type=MATHDataset, | ||
| path='opencompass/math', | ||
| file_name='test_prm800k_500.json', | ||
| ), | ||
| judge_cfg=dict(), | ||
| ) | ||
|
|
||
| rule_evaluator =dict(type=MATHEvaluator) | ||
| cascade_evaluator = dict(type=CascadeEvaluator, | ||
| llm_evaluator=llm_judge_evaluator, | ||
| rule_evaluator=rule_evaluator, | ||
| parallel=False | ||
| ) | ||
| ########################## ################################# | ||
| eval_cfg = dict() | ||
|
|
||
| # eval_cfg['evaluator'] = rule_evaluator | ||
| # eval_cfg['evaluator'] = llm_judge_evaluator | ||
| eval_cfg['evaluator'] = cascade_evaluator | ||
|
|
||
| math_datasets = [ | ||
| dict( | ||
| abbr='math_prm800k_500', | ||
| type=MATHDataset, | ||
| path='opencompass/math', | ||
| file_name='test_prm800k_500.json', | ||
| reader_cfg=reader_cfg, | ||
| infer_cfg=infer_cfg, | ||
| eval_cfg=eval_cfg, | ||
| ) | ||
| ] | ||
|
|
||
|
|
||
| datasets = math_datasets | ||
| models = lmdeploy_qwen2_5_7b_instruct_model | ||
|
|
||
|
|
||
| work_dir = 'math_prm800k_500_cascade_evaluator' |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where can I import this
CascadeEvaluator?