mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
34 lines
1.0 KiB
Python
34 lines
1.0 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 lambadaDataset, LambadaEvaluator
|
||
|
|
||
|
lambada_reader_cfg = dict(
|
||
|
input_columns=['prompt'],
|
||
|
output_column='label',
|
||
|
train_split='test',
|
||
|
test_split='test')
|
||
|
|
||
|
lambada_infer_cfg = dict(
|
||
|
prompt_template=dict(
|
||
|
type=PromptTemplate,
|
||
|
template=dict(round=[
|
||
|
dict(
|
||
|
role='HUMAN',
|
||
|
prompt='Please complete the following sentence:\n{prompt}')
|
||
|
])),
|
||
|
retriever=dict(type=ZeroRetriever),
|
||
|
inferencer=dict(type=GenInferencer, max_out_len=5))
|
||
|
|
||
|
lambada_eval_cfg = dict(evaluator=dict(type=LambadaEvaluator))
|
||
|
|
||
|
lambada_datasets = [
|
||
|
dict(
|
||
|
abbr='lambada',
|
||
|
type=lambadaDataset,
|
||
|
path='craffel/openai_lambada',
|
||
|
reader_cfg=lambada_reader_cfg,
|
||
|
infer_cfg=lambada_infer_cfg,
|
||
|
eval_cfg=lambada_eval_cfg)
|
||
|
]
|