-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fengzhe Zhou
authored
Apr 9, 2024
1 parent
16f29b2
commit b39f501
Showing
87 changed files
with
2,635 additions
and
649 deletions.
There are no files selected for viewing
This file contains 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,77 @@ | ||
import csv | ||
import os | ||
|
||
import pytest | ||
|
||
output_path = 'regression_result' | ||
model = 'internlm-chat-7b-hf' | ||
dataset = 'siqa' | ||
|
||
|
||
@pytest.fixture() | ||
def result_scores(): | ||
file = find_csv_files(output_path) | ||
if file is None: | ||
return None | ||
return read_csv_file(file) | ||
|
||
|
||
@pytest.mark.usefixtures('result_scores') | ||
class TestChatScore: | ||
"""Test cases for chat model.""" | ||
|
||
def test_model_dataset_score(self, result_scores): | ||
result_score = result_scores.get(model).get(dataset) | ||
assert_score(result_score, 73.59) | ||
|
||
|
||
def assert_score(score, baseline): | ||
if score is None or score == '-': | ||
assert False, 'value is none' | ||
if float(score) < (baseline * 1.03) and float(score) > (baseline * 0.97): | ||
print(score + ' between ' + str(baseline * 0.97) + ' and ' + | ||
str(baseline * 1.03)) | ||
assert True | ||
else: | ||
assert False, score + ' not between ' + str( | ||
baseline * 0.97) + ' and ' + str(baseline * 1.03) | ||
|
||
|
||
def find_csv_files(directory): | ||
csv_files = [] | ||
for root, dirs, files in os.walk(directory): | ||
for file in files: | ||
if file.endswith('.csv'): | ||
csv_files.append(os.path.join(root, file)) | ||
if len(csv_files) > 1: | ||
raise 'have more than 1 result file, please check the result manually' | ||
if len(csv_files) == 0: | ||
return None | ||
return csv_files[0] | ||
|
||
|
||
def read_csv_file(file_path): | ||
with open(file_path, 'r') as csvfile: | ||
reader = csv.DictReader(csvfile) | ||
filtered_data = [] | ||
|
||
for row in reader: | ||
filtered_row = { | ||
k: v | ||
for k, v in row.items() | ||
if k not in ['version', 'metric', 'mode'] | ||
} | ||
filtered_data.append(filtered_row) | ||
|
||
result = {} | ||
for data in filtered_data: | ||
dataset = data.get('dataset') | ||
for key in data.keys(): | ||
if key == 'dataset': | ||
continue | ||
else: | ||
if key in result.keys(): | ||
result.get(key)[dataset] = data.get(key) | ||
else: | ||
result[key] = {dataset: data.get(key)} | ||
return result |
This file contains 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
File renamed without changes.
This file contains 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
114 changes: 114 additions & 0 deletions
114
configs/datasets/MathBench/mathbench_2024_wocircular_mixed_649349.py
This file contains 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,114 @@ | ||
from opencompass.openicl.icl_prompt_template import PromptTemplate | ||
from opencompass.openicl.icl_retriever import ZeroRetriever | ||
from opencompass.openicl.icl_inferencer import GenInferencer, PPLInferencer | ||
from opencompass.openicl.icl_evaluator import CircularEvaluator, AccEvaluator | ||
from opencompass.datasets import MathBenchDataset, mathbench_postprocess | ||
from opencompass.utils.text_postprocessors import first_option_postprocess | ||
|
||
single_choice_prompts = { | ||
"single_choice_cn_with_reasoning": "以下是一道关于数学的单项选择题,请你一步一步推理,并在最后用“所以答案为选项X”给出答案,其中“X”为选项A,B,C,D中你认为正确的选项。下面是你要回答的问题\n{question}\n让我们一步一步思考:\n", | ||
"single_choice_cn": "以下是一道关于数学的单项选择题,请你直接回答正确答案的选项序号。\n下面是你要回答的题目:\n{question}\n答案选项:\n", | ||
"single_choice_en_with_reasoning": "Here is a multiple-choice question about mathematics. Please reason through it step by step, and at the end, provide your answer option with 'Therefore, the correct answer is option X', Where 'X' is the correct option you think from A,B,C,D. Here is the question you need to answer:\n{question}\nLet's think step by step:\n", | ||
"single_choice_en": "Here is a multiple-choice question about mathematics. Please provide the correct answer option directly.\nHere is the question you need to answer:\n{question}\nAnswer option:\n", | ||
} | ||
|
||
cloze_prompts = { | ||
"cloze_cn": [ | ||
"Q: 林中有15棵树。林务工人员今天将在林中种植树木。完成后,将有21棵树。林务工人员今天种植了多少棵树?\nA: 我们从15棵树开始。后来有21棵树。差值必定是他们种植的树木数量。所以,他们必须种植了21 - 15 = 6棵树。答案是 6", | ||
"Q: 如果停车场有3辆车,又有2辆车进来,停车场里有多少辆车?\nA: 停车场已经有3辆车。又进来了2辆车。现在有3 + 2 = 5辆车。答案是 5", | ||
"Q: 黎恩有32块巧克力,她的妹妹有42块。如果他们吃了35块,他们总共剩下多少块?\nA: 黎恩有32块巧克力,Leah的妹妹有42块。这意味着原本有32 + 42 = 74块巧克力。被吃掉了35块。所以他们总共还剩下74 - 35 = 39块巧克力。答案是 39", | ||
"Q: 杰森有20个棒棒糖。他给丹妮一些棒棒糖。现在Jason只剩下12个棒棒糖。杰森给丹妮多少个棒棒糖?\nA: 杰森有20个棒棒糖。因为他现在只剩下12个,所以他必须把剩下的都给了丹妮。他给丹妮的棒棒糖数量必定是20 - 12 = 8个。答案是 8", | ||
"Q: 莎莎有五个玩具。在圣诞节,他从他的爸爸和妈妈那里各得到了两个玩具。现在他有多少个玩具?\nA: 她有5个玩具。他从妈妈那里得到了2个,所以之后他有5 + 2 = 7个玩具。然后他从爸爸那里得到了2个,所以总共他有7 + 2 = 9个玩具。答案是 9", | ||
"Q: 服务器房间里有九台电脑。从周一到周四每天增加五台电脑。现在服务器房里有多少台电脑?\nA: 从周一到周四有4天。每天增加5台电脑。这意味着总共增加了4 * 5 = 20台电脑。一开始有9台电脑,所以现在有9 + 20 = 29台电脑。答案是 29", | ||
"Q: 迈克尔有58个高尔夫球。星期二,他丢失了23个高尔夫球。星期三,他又丢失了2个。星期三结束时他还剩下多少个高尔夫球?\nA: 迈克尔一开始有58个球。星期二他丢失了23个,所以之后他还剩下58 - 23 = 35个球。星期三他又丢失了2个,所以现在他还剩下35 - 2 = 33个球。答案是 33", | ||
"Q: 奥利弗有23美元。她用每个3美元的价格买了五个百吉饼。她还剩下多少钱?\nA: 她以每个3美元的价格买了5个百吉饼。这意味着她在百吉饼上花费了5 * 3 = 15美元。她一开始有23美元,所以现在她还剩下23 - 15 = 8美元。答案是 8", | ||
"Q: {question}\nA: {answer}", | ||
], | ||
"cloze_en": [ | ||
"Q: There are 15 trees in the grove. Grove workers will plant trees in the grove today. After they are done, there will be 21 trees. How many trees did the grove workers plant today?\nA: We start with 15 trees. Later we have 21 trees. The difference must be the number of trees they planted. So, they must have planted 21 - 15 = 6 trees. The answer is 6.", | ||
"Q: If there are 3 cars in the parking lot and 2 more cars arrive, how many cars are in the parking lot?\nA: There are 3 cars in the parking lot already. 2 more arrive. Now there are 3 + 2 = 5 cars. The answer is 5.", | ||
"Q: Leah had 32 chocolates and her sister had 42. If they ate 35, how many pieces do they have left in total?\nA: Leah had 32 chocolates and Leah's sister had 42. That means there were originally 32 + 42 = 74 chocolates. 35 have been eaten. So in total they still have 74 - 35 = 39 chocolates. The answer is 39.", | ||
"Q: Jason had 20 lollipops. He gave Denny some lollipops. Now Jason has 12 lollipops. How many lollipops did Jason give to Denny?\nA: Jason had 20 lollipops. Since he only has 12 now, he must have given the rest to Denny. The number of lollipops he has given to Denny must have been 20 - 12 = 8 lollipops. The answer is 8.", | ||
"Q: Shawn has five toys. For Christmas, he got two toys each from his mom and dad. How many toys does he have now?\nA: He has 5 toys. He got 2 from mom, so after that he has 5 + 2 = 7 toys. Then he got 2 more from dad, so in total he has 7 + 2 = 9 toys. The answer is 9.", | ||
"Q: There were nine computers in the server room. Five more computers were installed each day, from monday to thursday. How many computers are now in the server room?\nA: There are 4 days from monday to thursday. 5 computers were added each day. That means in total 4 * 5 = 20 computers were added. There were 9 computers in the beginning, so now there are 9 + 20 = 29 computers. The answer is 29.", | ||
"Q: Michael had 58 golf balls. On tuesday, he lost 23 golf balls. On wednesday, he lost 2 more. How many golf balls did he have at the end of wednesday?\nA: Michael initially had 58 balls. He lost 23 on Tuesday, so after that he has 58 - 23 = 35 balls. On Wednesday he lost 2 more so now he has 35 - 2 = 33 balls. The answer is 33.", | ||
"Q: Olivia has $23. She bought five bagels for $3 each. How much money does she have left?\nA: She bought 5 bagels for $3 each. This means she spent 5 * $3 = $15 on the bagels. She had $23 in beginning, so now she has $23 - $15 = $8. The answer is 8.", | ||
"Q: {question}\nA: {answer}", | ||
], | ||
} | ||
|
||
mathbench_sets = { | ||
# Practice Part | ||
"college": ["single_choice_cn", "single_choice_en"], | ||
"high": ["single_choice_cn", "single_choice_en"], | ||
"middle": ["single_choice_cn", "single_choice_en"], | ||
"primary": ["cloze_cn", "cloze_en"], | ||
"calculate": ["cloze_en"], | ||
# Theory part | ||
"college_knowledge": ["single_choice_cn", "single_choice_en"], | ||
"high_knowledge": ["single_choice_cn", "single_choice_en"], | ||
"middle_knowledge": ["single_choice_cn", "single_choice_en"], | ||
"primary_knowledge": ["single_choice_cn", "single_choice_en"], | ||
} | ||
|
||
# Generate reasoning path or not, only for single choice | ||
with_reasoning = False | ||
|
||
# Use circular evaluation or not | ||
with_circular_eval = False | ||
|
||
mathbench_datasets = [] | ||
|
||
for _split in list(mathbench_sets.keys()): | ||
for _name in mathbench_sets[_split]: | ||
mathbench_reader_cfg = dict( | ||
input_columns=["question"], | ||
output_column="answer", | ||
) | ||
|
||
if "single_choice" in _name: | ||
if with_reasoning: | ||
mathbench_infer_cfg = dict( | ||
prompt_template=dict(type=PromptTemplate, template=single_choice_prompts[_name + "_with_reasoning"]), | ||
retriever=dict(type=ZeroRetriever), | ||
inferencer=dict(type=GenInferencer, max_out_len=512), | ||
) | ||
else: | ||
mathbench_infer_cfg = dict( | ||
prompt_template=dict(type=PromptTemplate, template={answer: f"{single_choice_prompts[_name]}{answer}" for answer in ['A', 'B', 'C', 'D']}), | ||
retriever=dict(type=ZeroRetriever), | ||
inferencer=dict(type=PPLInferencer), | ||
) | ||
else: | ||
mathbench_infer_cfg = dict( | ||
prompt_template=dict(type=PromptTemplate, template='\n'.join(cloze_prompts[_name])), | ||
retriever=dict(type=ZeroRetriever), | ||
inferencer=dict(type=GenInferencer, max_out_len=512), | ||
) | ||
|
||
|
||
if "single_choice" in _name: | ||
pred_postprocessor = dict(type=first_option_postprocess, options="ABCD") | ||
else: | ||
pred_postprocessor = dict(type=mathbench_postprocess, name=_name) | ||
if "single_choice" in _name and with_circular_eval: | ||
evaluator = dict(type=CircularEvaluator) | ||
else: | ||
evaluator = dict(type=AccEvaluator) | ||
mathbench_eval_cfg = dict( | ||
evaluator=evaluator, | ||
pred_postprocessor=pred_postprocessor, | ||
) | ||
|
||
mathbench_datasets.append( | ||
dict( | ||
abbr="mathbench-" + _split + "-" + _name, | ||
type=MathBenchDataset, | ||
path=f"./data/mathbench_v1_ori/{_split}", | ||
name=_name, | ||
with_circular=with_circular_eval, | ||
reader_cfg=mathbench_reader_cfg, | ||
infer_cfg=mathbench_infer_cfg, | ||
eval_cfg=mathbench_eval_cfg, | ||
) | ||
) |
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from mmengine.config import read_base | ||
|
||
with read_base(): | ||
from .mathbench_2024_gen_de9ff9 import mathbench_datasets # noqa: F401, F403 | ||
from .mathbench_2024_gen_649349 import mathbench_datasets # noqa: F401, F403 |
This file contains 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 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,102 @@ | ||
from opencompass.openicl.icl_prompt_template import PromptTemplate | ||
from opencompass.openicl.icl_retriever import FixKRetriever | ||
from opencompass.openicl.icl_inferencer import PPLInferencer | ||
from opencompass.openicl.icl_evaluator import AccEvaluator | ||
from opencompass.datasets import CEvalDataset | ||
|
||
ceval_subject_mapping = { | ||
'computer_network': ['Computer Network', '计算机网络', 'STEM'], | ||
'operating_system': ['Operating System', '操作系统', 'STEM'], | ||
'computer_architecture': ['Computer Architecture', '计算机组成', 'STEM'], | ||
'college_programming': ['College Programming', '大学编程', 'STEM'], | ||
'college_physics': ['College Physics', '大学物理', 'STEM'], | ||
'college_chemistry': ['College Chemistry', '大学化学', 'STEM'], | ||
'advanced_mathematics': ['Advanced Mathematics', '高等数学', 'STEM'], | ||
'probability_and_statistics': ['Probability and Statistics', '概率统计', 'STEM'], | ||
'discrete_mathematics': ['Discrete Mathematics', '离散数学', 'STEM'], | ||
'electrical_engineer': ['Electrical Engineer', '注册电气工程师', 'STEM'], | ||
'metrology_engineer': ['Metrology Engineer', '注册计量师', 'STEM'], | ||
'high_school_mathematics': ['High School Mathematics', '高中数学', 'STEM'], | ||
'high_school_physics': ['High School Physics', '高中物理', 'STEM'], | ||
'high_school_chemistry': ['High School Chemistry', '高中化学', 'STEM'], | ||
'high_school_biology': ['High School Biology', '高中生物', 'STEM'], | ||
'middle_school_mathematics': ['Middle School Mathematics', '初中数学', 'STEM'], | ||
'middle_school_biology': ['Middle School Biology', '初中生物', 'STEM'], | ||
'middle_school_physics': ['Middle School Physics', '初中物理', 'STEM'], | ||
'middle_school_chemistry': ['Middle School Chemistry', '初中化学', 'STEM'], | ||
'veterinary_medicine': ['Veterinary Medicine', '兽医学', 'STEM'], | ||
'college_economics': ['College Economics', '大学经济学', 'Social Science'], | ||
'business_administration': ['Business Administration', '工商管理', 'Social Science'], | ||
'marxism': ['Marxism', '马克思主义基本原理', 'Social Science'], | ||
'mao_zedong_thought': ['Mao Zedong Thought', '毛泽东思想和中国特色社会主义理论体系概论', 'Social Science'], | ||
'education_science': ['Education Science', '教育学', 'Social Science'], | ||
'teacher_qualification': ['Teacher Qualification', '教师资格', 'Social Science'], | ||
'high_school_politics': ['High School Politics', '高中政治', 'Social Science'], | ||
'high_school_geography': ['High School Geography', '高中地理', 'Social Science'], | ||
'middle_school_politics': ['Middle School Politics', '初中政治', 'Social Science'], | ||
'middle_school_geography': ['Middle School Geography', '初中地理', 'Social Science'], | ||
'modern_chinese_history': ['Modern Chinese History', '近代史纲要', 'Humanities'], | ||
'ideological_and_moral_cultivation': ['Ideological and Moral Cultivation', '思想道德修养与法律基础', 'Humanities'], | ||
'logic': ['Logic', '逻辑学', 'Humanities'], | ||
'law': ['Law', '法学', 'Humanities'], | ||
'chinese_language_and_literature': ['Chinese Language and Literature', '中国语言文学', 'Humanities'], | ||
'art_studies': ['Art Studies', '艺术学', 'Humanities'], | ||
'professional_tour_guide': ['Professional Tour Guide', '导游资格', 'Humanities'], | ||
'legal_professional': ['Legal Professional', '法律职业资格', 'Humanities'], | ||
'high_school_chinese': ['High School Chinese', '高中语文', 'Humanities'], | ||
'high_school_history': ['High School History', '高中历史', 'Humanities'], | ||
'middle_school_history': ['Middle School History', '初中历史', 'Humanities'], | ||
'civil_servant': ['Civil Servant', '公务员', 'Other'], | ||
'sports_science': ['Sports Science', '体育学', 'Other'], | ||
'plant_protection': ['Plant Protection', '植物保护', 'Other'], | ||
'basic_medicine': ['Basic Medicine', '基础医学', 'Other'], | ||
'clinical_medicine': ['Clinical Medicine', '临床医学', 'Other'], | ||
'urban_and_rural_planner': ['Urban and Rural Planner', '注册城乡规划师', 'Other'], | ||
'accountant': ['Accountant', '注册会计师', 'Other'], | ||
'fire_engineer': ['Fire Engineer', '注册消防工程师', 'Other'], | ||
'environmental_impact_assessment_engineer': ['Environmental Impact Assessment Engineer', '环境影响评价工程师', 'Other'], | ||
'tax_accountant': ['Tax Accountant', '税务师', 'Other'], | ||
'physician': ['Physician', '医师资格', 'Other'], | ||
} | ||
ceval_all_sets = list(ceval_subject_mapping.keys()) | ||
|
||
ceval_datasets = [] | ||
for _split in ["val", "test"]: | ||
for _name in ceval_all_sets: | ||
ceval_reader_cfg = dict( | ||
input_columns=["question", "A", "B", "C", "D"], | ||
output_column="answer", | ||
train_split="dev", | ||
test_split=_split, | ||
) | ||
|
||
_ch_name = ceval_subject_mapping[_name][1] | ||
|
||
hint = f"以下是关于{_ch_name}的单项选择题,请直接给出正确答案的选项。" | ||
question_and_options = "{question}\nA. {A}\nB. {B}\nC. {C}\nD. {D}" | ||
ceval_infer_cfg = dict( | ||
ice_template=dict( | ||
type=PromptTemplate, | ||
template={answer: f"{question_and_options}\n答案: {answer}\n" for answer in ["A", "B", "C", "D"]}, | ||
), | ||
prompt_template=dict( | ||
type=PromptTemplate, | ||
template={answer: f"{hint}\n</E>{question_and_options}\n答案: {answer}" for answer in ["A", "B", "C", "D"]}, | ||
ice_token="</E>", | ||
), | ||
retriever=dict(type=FixKRetriever, fix_id_list=[0, 1, 2, 3, 4]), | ||
inferencer=dict(type=PPLInferencer), | ||
) | ||
|
||
ceval_eval_cfg = dict(evaluator=dict(type=AccEvaluator)) | ||
|
||
ceval_datasets.append( | ||
dict( | ||
type=CEvalDataset, | ||
path="./data/ceval_internal/formal_ceval", | ||
name=_name, | ||
abbr="ceval-" + _name if _split == "val" else "ceval-test-" + _name, | ||
reader_cfg=ceval_reader_cfg, | ||
infer_cfg=ceval_infer_cfg, | ||
eval_cfg=ceval_eval_cfg, | ||
)) |
This file contains 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
Oops, something went wrong.