mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
39 lines
1.2 KiB
Python
39 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.datasets import LongBenchF1Evaluator, LongBenchnqDataset
|
|
|
|
LongBench_nq_reader_cfg = dict(
|
|
input_columns=['context', 'input'],
|
|
output_column='answers',
|
|
train_split='test',
|
|
test_split='test'
|
|
)
|
|
|
|
LongBench_nq_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template=dict(
|
|
round=[
|
|
dict(role='HUMAN', prompt='Answer the question based on the given passage. Only give me the answer and do not output any other words. The following are some examples.\n\n{context}\n\n{input}'),
|
|
], )),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=GenInferencer, max_out_len=32)
|
|
)
|
|
|
|
LongBench_nq_eval_cfg = dict(
|
|
evaluator=dict(type=LongBenchF1Evaluator),
|
|
pred_role='BOT'
|
|
)
|
|
|
|
LongBench_nq_datasets = [
|
|
dict(
|
|
type=LongBenchnqDataset,
|
|
abbr='LongBench_nq',
|
|
path='THUDM/LongBench',
|
|
name='nq',
|
|
reader_cfg=LongBench_nq_reader_cfg,
|
|
infer_cfg=LongBench_nq_infer_cfg,
|
|
eval_cfg=LongBench_nq_eval_cfg)
|
|
]
|