mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* [Feature] Support import configs/models/summarizers from whl * Update LCBench configs * Update * Update * Update * Update * update * Update * Update * Update * Update * Update
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
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_evaluator import EDAccEvaluator
|
|
from opencompass.datasets import siqaDataset_V2
|
|
|
|
siqa_reader_cfg = dict(
|
|
input_columns=['context', 'question', 'answerA', 'answerB', 'answerC'],
|
|
output_column='all_labels',
|
|
test_split='validation')
|
|
|
|
siqa_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template=dict(
|
|
round=[
|
|
dict(
|
|
role='HUMAN',
|
|
prompt=
|
|
'{context}\nQuestion: {question}\nA. {answerA}\nB. {answerB}\nC. {answerC}\nAnswer:'
|
|
)
|
|
], ),
|
|
),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=GenInferencer),
|
|
)
|
|
|
|
siqa_eval_cfg = dict(
|
|
evaluator=dict(type=EDAccEvaluator),
|
|
pred_role='BOT',
|
|
)
|
|
|
|
siqa_datasets = [
|
|
dict(
|
|
abbr='siqa',
|
|
type=siqaDataset_V2,
|
|
path='opencompass/siqa',
|
|
reader_cfg=siqa_reader_cfg,
|
|
infer_cfg=siqa_infer_cfg,
|
|
eval_cfg=siqa_eval_cfg)
|
|
]
|