mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
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 HFDataset
|
|
|
|
summedits_reader_cfg = dict(
|
|
input_columns=['doc', 'summary'],
|
|
output_column='label',
|
|
test_split='train')
|
|
|
|
summedits_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template={
|
|
0:
|
|
dict(round=[
|
|
dict(
|
|
role="HUMAN",
|
|
prompt=
|
|
"""\nDocument:\n{doc}\nSummary:\n{summary}\nIs the summary factually consistent with the document? """
|
|
),
|
|
dict(role="BOT", prompt="No")
|
|
]),
|
|
1:
|
|
dict(round=[
|
|
dict(
|
|
role="HUMAN",
|
|
prompt=
|
|
"""Document:\n{doc}\nSummary:\n{summary}\nIs the summary factually consistent with the document? """
|
|
),
|
|
dict(role="BOT", prompt="Yes")
|
|
]),
|
|
}),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=PPLInferencer))
|
|
|
|
summedits_eval_cfg = dict(evaluator=dict(type=AccEvaluator))
|
|
|
|
summedits_datasets = [
|
|
dict(
|
|
type=HFDataset,
|
|
abbr='summedits',
|
|
path='json',
|
|
split='train',
|
|
data_files='./data/summedits/summedits.jsonl',
|
|
reader_cfg=summedits_reader_cfg,
|
|
infer_cfg=summedits_infer_cfg,
|
|
eval_cfg=summedits_eval_cfg)
|
|
]
|