CLUE_afqmc_ppl_378c5b.py 1.38 KB
Newer Older
yingfhu's avatar
yingfhu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

afqmc_reader_cfg = dict(
    input_columns=['sentence1', 'sentence2'],
    output_column='label',
    test_split='train')

afqmc_infer_cfg = dict(
    prompt_template=dict(
        type=PromptTemplate,
        template={
            0:
            dict(round=[
                dict(
19
20
                    role='HUMAN', prompt='“{sentence1}”与“{sentence2}”不同还是相似?'),
                dict(role='BOT', prompt='不同。')
yingfhu's avatar
yingfhu committed
21
22
23
24
            ]),
            1:
            dict(round=[
                dict(
25
26
                    role='HUMAN', prompt='“{sentence1}”与“{sentence2}”不同还是相似?'),
                dict(role='BOT', prompt='相似')
yingfhu's avatar
yingfhu committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
            ]),
        }),
    retriever=dict(type=ZeroRetriever),
    inferencer=dict(type=PPLInferencer))

afqmc_eval_cfg = dict(evaluator=dict(type=AccEvaluator))

afqmc_datasets = [
    dict(
        type=HFDataset,
        abbr='afqmc-dev',
        path='json',
        data_files='./data/CLUE/AFQMC/dev.json',
        split='train',
        reader_cfg=afqmc_reader_cfg,
        infer_cfg=afqmc_infer_cfg,
        eval_cfg=afqmc_eval_cfg),
]