2023-11-30 15:33:02 +08:00
|
|
|
from opencompass.openicl.icl_prompt_template import PromptTemplate
|
|
|
|
from opencompass.openicl.icl_retriever import ZeroRetriever
|
|
|
|
from opencompass.openicl.icl_inferencer import PPLInferencer
|
|
|
|
from opencompass.openicl.icl_evaluator import AccEvaluator
|
|
|
|
from opencompass.datasets import CommonsenseQADataset_CN
|
|
|
|
|
|
|
|
commonsenseqacn_reader_cfg = dict(
|
2024-05-14 15:35:58 +08:00
|
|
|
input_columns=['question', 'A', 'B', 'C', 'D', 'E'],
|
|
|
|
output_column='answerKey',
|
|
|
|
test_split='validation',
|
2023-11-30 15:33:02 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
_ice_template = dict(
|
|
|
|
type=PromptTemplate,
|
|
|
|
template={
|
|
|
|
ans: dict(
|
2024-05-14 15:35:58 +08:00
|
|
|
begin='</E>',
|
2023-11-30 15:33:02 +08:00
|
|
|
round=[
|
2024-05-14 15:35:58 +08:00
|
|
|
dict(role='HUMAN', prompt='问题: {question}\n答案: '),
|
|
|
|
dict(role='BOT', prompt=ans_token),
|
2023-11-30 15:33:02 +08:00
|
|
|
],
|
|
|
|
)
|
|
|
|
for ans, ans_token in [
|
2024-05-14 15:35:58 +08:00
|
|
|
['A', '{A}'],
|
|
|
|
['B', '{B}'],
|
|
|
|
['C', '{C}'],
|
|
|
|
['D', '{D}'],
|
|
|
|
['E', '{E}'],
|
2023-11-30 15:33:02 +08:00
|
|
|
]
|
|
|
|
},
|
2024-05-14 15:35:58 +08:00
|
|
|
ice_token='</E>',
|
2023-11-30 15:33:02 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
commonsenseqacn_infer_cfg = dict(
|
|
|
|
prompt_template=_ice_template,
|
|
|
|
retriever=dict(type=ZeroRetriever),
|
|
|
|
inferencer=dict(type=PPLInferencer),
|
|
|
|
)
|
|
|
|
|
|
|
|
commonsenseqacn_eval_cfg = dict(evaluator=dict(type=AccEvaluator))
|
|
|
|
|
|
|
|
commonsenseqacn_datasets = [
|
|
|
|
dict(
|
2024-05-14 15:35:58 +08:00
|
|
|
abbr='commonsenseqa_cn',
|
2023-11-30 15:33:02 +08:00
|
|
|
type=CommonsenseQADataset_CN,
|
2024-05-14 15:35:58 +08:00
|
|
|
path='./data/commonsenseqa_cn/validation.jsonl',
|
2023-11-30 15:33:02 +08:00
|
|
|
reader_cfg=commonsenseqacn_reader_cfg,
|
|
|
|
infer_cfg=commonsenseqacn_infer_cfg,
|
|
|
|
eval_cfg=commonsenseqacn_eval_cfg,
|
|
|
|
)
|
|
|
|
]
|