diff --git a/dataset-index.yml b/dataset-index.yml index 94e88200..1bfbdbbc 100644 --- a/dataset-index.yml +++ b/dataset-index.yml @@ -1046,4 +1046,10 @@ category: Reasoning/Code/Agent paper: '' configpath: opencompass/configs/datasets/internsandbox/internsandbox_gen_44b982.py - configpath_llmjudge: '' \ No newline at end of file + configpath_llmjudge: '' +- nejmaibench: + name: nejmaibench + category: Science /Medicine + paper: https://arxiv.org/pdf/2308.04709 + configpath: opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen.py + configpath_llmjudge: opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen.py diff --git a/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen.py b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen.py new file mode 100644 index 00000000..2116726c --- /dev/null +++ b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen.py @@ -0,0 +1,4 @@ +from mmengine.config import read_base + +with read_base(): + from .nejmaibench_gen_60c8f5 import nejmaibench_datasets # noqa: F401, F403 \ No newline at end of file diff --git a/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen_60c8f5.py b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen_60c8f5.py new file mode 100644 index 00000000..ec817c57 --- /dev/null +++ b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_gen_60c8f5.py @@ -0,0 +1,59 @@ +from opencompass.datasets import NejmaibenchDataset, NejmaibenchEvaluator +from opencompass.openicl.icl_inferencer import GenInferencer +from opencompass.openicl.icl_prompt_template import PromptTemplate +from opencompass.openicl.icl_retriever import ZeroRetriever + +import os + +SYSTEM_PROMPT = 'You are a helpful medical assistant.\n\n' # Where to put this? +ZERO_SHOT_PROMPT = 'Q: {question}\n Please select the correct answer from the options above and output only the corresponding letter (A, B, C, D, or E) without any explanation or additional text.\n' + +# Reader configuration +reader_cfg = dict( + input_columns=[ + 'question', + 'options', + 'Subject', + 'prompt_mode', + + ], + output_column='label', +) + +# Inference configuration +infer_cfg = dict( + prompt_template=dict( + type=PromptTemplate, + template=dict( + begin=[ + dict(role='SYSTEM', fallback_role='HUMAN', prompt=SYSTEM_PROMPT), + ], + round=[ + dict( + role='HUMAN', + prompt=ZERO_SHOT_PROMPT, # prompt mode: zero-shot + ), + ], + ), + ), + retriever=dict(type=ZeroRetriever), + inferencer=dict(type=GenInferencer), +) + +# Evaluation configuration +eval_cfg = dict( + evaluator=dict(type=NejmaibenchEvaluator), + pred_role='BOT', +) +nejmaibench_dataset = dict( + type=NejmaibenchDataset, + abbr='nejmaibench', + path='opencompass/nejmaibench', + prompt_mode='zero-shot', + reader_cfg=reader_cfg, + infer_cfg=infer_cfg, + eval_cfg=eval_cfg, + +) + +nejmaibench_datasets = [nejmaibench_dataset] diff --git a/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen.py b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen.py new file mode 100644 index 00000000..de683ccc --- /dev/null +++ b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen.py @@ -0,0 +1,4 @@ +from mmengine.config import read_base + +with read_base(): + from .nejmaibench_llmjudge_gen_60c8f5 import nejmaibench_datasets # noqa: F401, F403 \ No newline at end of file diff --git a/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen_60c8f5.py b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen_60c8f5.py new file mode 100644 index 00000000..31be8049 --- /dev/null +++ b/opencompass/configs/datasets/nejm_ai_benchmark/nejmaibench_llmjudge_gen_60c8f5.py @@ -0,0 +1,108 @@ +from opencompass.datasets import NejmaibenchDataset +from opencompass.openicl.icl_inferencer import GenInferencer +from opencompass.openicl.icl_prompt_template import PromptTemplate +from opencompass.openicl.icl_retriever import ZeroRetriever +from opencompass.datasets import generic_llmjudge_postprocess +from opencompass.evaluator import GenericLLMEvaluator +import os + +SYSTEM_PROMPT = 'You are a helpful medical assistant.\n\n' # Where to put this? +ZERO_SHOT_PROMPT = 'Q: {question}\n Please select the correct answer from the options above and output only the corresponding letter (A, B, C, D, or E) without any explanation or additional text.\n' +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. + + 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. + + : Q: {question}\nPlease select the correct answer from the options above and output only the corresponding letter (A, B, C, D, or E) without any explanation or additional text.\n\n\n\n + : \n{label}\n\n\n + : \n{prediction}\n\n\n + Judging the correctness of candidates' answers: +""".strip() + +# Reader configuration +reader_cfg = dict( + input_columns=[ + 'question', + 'options', + 'Subject', + 'prompt_mode', + + ], + output_column='label', +) + + +# Inference configuration +infer_cfg = dict( + prompt_template=dict( + type=PromptTemplate, + template=dict( + begin=[ + dict(role='SYSTEM', fallback_role='HUMAN', prompt=SYSTEM_PROMPT), + ], + round=[ + dict( + role='HUMAN', + prompt=ZERO_SHOT_PROMPT, # prompt mode: zero-shot + ), + ], + ), + ), + retriever=dict(type=ZeroRetriever), + inferencer=dict(type=GenInferencer), +) + +# Evaluation configuration +eval_cfg = dict( + 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=NejmaibenchDataset, + path='opencompass/nejmaibench', + prompt_mode='zero-shot', + reader_cfg=reader_cfg, + ), + judge_cfg=dict(), + dict_postprocessor=dict(type=generic_llmjudge_postprocess), + ), +) + + +nejmaibench_dataset = dict( + type=NejmaibenchDataset, + abbr='nejmaibench', + path='opencompass/nejmaibench', + prompt_mode='zero-shot', + reader_cfg=reader_cfg, + infer_cfg=infer_cfg, + eval_cfg=eval_cfg, + +) + +nejmaibench_datasets = [nejmaibench_dataset] diff --git a/opencompass/datasets/__init__.py b/opencompass/datasets/__init__.py index a7c037cf..220ce030 100644 --- a/opencompass/datasets/__init__.py +++ b/opencompass/datasets/__init__.py @@ -109,6 +109,7 @@ from .musr import * # noqa: F401, F403 from .narrativeqa import * # noqa: F401, F403 from .natural_question import * # noqa: F401, F403 from .natural_question_cn import * # noqa: F401, F403 +from .nejmaibench import * # noqa: F401, F403 from .NPHardEval import * # noqa: F401, F403 from .obqa import * # noqa: F401, F403 from .olymmath import * # noqa: F401, F403 diff --git a/opencompass/datasets/nejmaibench.py b/opencompass/datasets/nejmaibench.py new file mode 100644 index 00000000..768f4688 --- /dev/null +++ b/opencompass/datasets/nejmaibench.py @@ -0,0 +1,139 @@ +import re + +import pandas as pd +from datasets import Dataset + +from opencompass.openicl import BaseEvaluator +from opencompass.registry import LOAD_DATASET, TEXT_POSTPROCESSORS +from opencompass.utils import get_data_path + +from .base import BaseDataset + + +def _parse(item, prompt_mode): + # 1. 从 Choices 字符串里按行拆分出每个选项 + raw_choices = item.get('Choices', '') + # 去掉首尾空白并按行分割,过滤掉空行 + lines = [ + line.strip() for line in raw_choices.strip().splitlines() + if line.strip() + ] + + # 2. 用正则去掉行首的 "A. "/"B. " 等前缀,只保留选项内容 + options_list = [re.sub(r'^[A-Z]\.\s*', '', line) for line in lines] + + # 3. 写回 item + item['options'] = options_list + + # 4. 重建带标号的选项字符串 + options_str = '\n'.join(f'{chr(65 + i)}. {opt}' + for i, opt in enumerate(options_list)) + + # 5. 构造 question、label、prompt_mode、start、end + item['question'] = f"{item['Question']}\n{options_str}" + item['label'] = item['Answer'] + item['prompt_mode'] = prompt_mode + item['start'] = chr(65) + item['end'] = chr(65 + len(options_list) - 1) + return item + + +@LOAD_DATASET.register_module() +class NejmaibenchDataset(BaseDataset): + + @staticmethod + def load(path: str, prompt_mode: str = 'zero-shot', **kwargs): + # 读取 CSV 文件为 DataFrame,并将 NaN 转为空字符串 + path = get_data_path(path) + df = pd.read_csv(path, encoding='utf-8') + df = df.fillna('') + + # 转换为字典列表 + data_list = df.to_dict(orient='records') + + # 将数据列表包装为 Dataset + dataset = Dataset.from_list(data_list) + + # 根据提示模式进行解析 + if prompt_mode == 'zero-shot': + dataset = dataset.map(lambda item: _parse(item, prompt_mode)) + elif prompt_mode == 'few-shot': + pass # TODO: Implement few-shot prompt handling + return dataset + + +class NejmaibenchEvaluator(BaseEvaluator): + + def score(self, predictions, references, test_set): + method = test_set['prompt_mode'][0] + + if len(predictions) != len(references): + return {'error': 'preds and refrs have different length'} + correct = 0 + count = 0 + details = [] + for idx, (i, j) in enumerate(zip(predictions, references)): + i = answer_cleansing(method, i, test_set['options'][idx], + test_set['label'][idx]) + detail = { + 'pred': i, + 'answer': j, + 'correct': False, + 'Subject': test_set['Subject'][idx], + } + count += 1 + if i == j: + correct += 1 + detail['correct'] = True + details.append(detail) + result = {'accuracy': 100 * correct / count, 'details': details} + return result + + +@TEXT_POSTPROCESSORS.register_module() +def answer_cleansing( + method: str, + prediction: str, + options: list, + label: str, +) -> str: + + # Clean up unwanted phrases in the prediction + for unwanted_phrase in [ + 'I understand', + 'A through J', + 'A through E', + 'A through D', + ]: + prediction = prediction.replace(unwanted_phrase, '') + + options_num = len(options) + options = [chr(65 + i) for i in range(options_num)] + options_str = r'\b(' + '|'.join(options) + r')\b' + prediction = re.findall(options_str, prediction) + + if len(prediction) == 0: + prediction = [] + return prediction + else: + # If there is a "label" and its length is 1, + # process prediction accordingly + if len(label) == 1: + if method == 'few-shot': + answer_flag = True if len(prediction) > 1 else False + # choose the first or last element based on the answer_flag + if answer_flag: + prediction = [prediction[0]] + else: + prediction = [prediction[-1]] + elif method == 'zero-shot': + # choose the first element in list + prediction = [prediction[0]] + else: + raise ValueError('Method is not properly defined ...') + + # Remove trailing period if it exists + if prediction[0] and prediction[0].endswith('.'): + prediction[0] = prediction[0][:-1] + + return prediction[0] diff --git a/opencompass/utils/datasets_info.py b/opencompass/utils/datasets_info.py index 5048a496..10ca4436 100644 --- a/opencompass/utils/datasets_info.py +++ b/opencompass/utils/datasets_info.py @@ -446,6 +446,11 @@ DATASETS_MAPPING = { "hf_id": "", "local": "./data/ChemBench4K", }, + "opencompass/nejmaibench": { + "ms_id": "", + "hf_id": "", + "local": "./data/nejmaibench/NEJM_All_Questions_And_Answers.csv", + }, } @@ -798,6 +803,11 @@ DATASETS_URL = { "url": "http://opencompass.oss-cn-shanghai.aliyuncs.com/datasets/data/ChemBench4K.zip", "md5": "fc23fd21b2566a5dbbebfa4601d7779c" + }, + "nejmaibench": { + "url": + "http://opencompass.oss-cn-shanghai.aliyuncs.com/datasets/data/nejmaibench.zip", + "md5": "e6082cae3596b3ebea73e23ba445b99e" } }