mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
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.datasets.OpenHuEval.HuSimpleQA import HuSimpleQADataset, HuSimpleQAEvaluator
|
|
|
|
with read_base():
|
|
from .HuSimpleQA_setting import INSTRUCTIONS, DATA_PATH, DATA_VERSION, JUDGE_PROMPT
|
|
|
|
PROMPT_LANGUAGES = [
|
|
'en',
|
|
'hu',
|
|
]
|
|
|
|
HuSimpleQA_reader_cfg = dict(input_columns=['question', 'hu_specific_dim'],
|
|
output_column='reference')
|
|
|
|
HuSimpleQA_datasets = []
|
|
for lang in PROMPT_LANGUAGES:
|
|
instruction = INSTRUCTIONS[lang]
|
|
|
|
HuSimpleQA_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template=dict(
|
|
begin='</E>',
|
|
round=[
|
|
dict(role='HUMAN', prompt=instruction),
|
|
],
|
|
),
|
|
ice_token='</E>',
|
|
),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=GenInferencer),
|
|
)
|
|
|
|
HuSimpleQA_eval_cfg = dict(evaluator=dict(
|
|
type=HuSimpleQAEvaluator,
|
|
judge_prompt_template=JUDGE_PROMPT,
|
|
))
|
|
|
|
HuSimpleQA_datasets.append(
|
|
dict(
|
|
abbr=f'OpenHuEval_HuSimpleQA_{DATA_VERSION}-prompt_{lang}',
|
|
type=HuSimpleQADataset,
|
|
filepath=DATA_PATH,
|
|
reader_cfg=HuSimpleQA_reader_cfg,
|
|
infer_cfg=HuSimpleQA_infer_cfg,
|
|
eval_cfg=HuSimpleQA_eval_cfg,
|
|
))
|