mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
37 lines
1.2 KiB
Python
37 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 PPLInferencer
|
||
|
from opencompass.openicl.icl_evaluator import AccEvaluator
|
||
|
from opencompass.datasets import winogradDataset
|
||
|
|
||
|
winograd_reader_cfg = dict(
|
||
|
input_columns=['opt1', 'opt2'],
|
||
|
output_column='label',
|
||
|
train_split='test',
|
||
|
test_split='test')
|
||
|
|
||
|
winograd_infer_cfg = dict(
|
||
|
prompt_template=dict(
|
||
|
type=PromptTemplate,
|
||
|
template={
|
||
|
0:
|
||
|
"{prompt} Q: In the previous text, what does '{pronoun}' refer to? A: {opt1}.", # noqa
|
||
|
1:
|
||
|
"{prompt} Q: In the previous text, what does '{pronoun}' refer to? A: {opt2}.", # noqa
|
||
|
}),
|
||
|
retriever=dict(type=ZeroRetriever),
|
||
|
inferencer=dict(type=PPLInferencer))
|
||
|
|
||
|
winograd_eval_cfg = dict(evaluator=dict(type=AccEvaluator), )
|
||
|
|
||
|
winograd_datasets = [
|
||
|
dict(
|
||
|
abbr='winograd',
|
||
|
type=winogradDataset,
|
||
|
path='winograd_wsc',
|
||
|
name='wsc285',
|
||
|
reader_cfg=winograd_reader_cfg,
|
||
|
infer_cfg=winograd_infer_cfg,
|
||
|
eval_cfg=winograd_eval_cfg)
|
||
|
]
|