OpenCompass/configs/datasets/taco/taco_gen_c7893a.py
Connor-Shen 0221d30877
[Fix] Update APPS/TACO (#988)
* [Feature] update apps/taco

* [Feature] update apps/taco
2024-03-19 20:21:39 +08:00

29 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 TACODataset, TACOEvaluator
TACO_reader_cfg = dict(input_columns=["question", "starter"], output_column="problem_id", train_split='test')
TACO_infer_cfg = dict(
prompt_template=dict(
type=PromptTemplate,
template="Please write a python program to address the following QUESTION. Your ANSWER should be in a code block format like this: ```python # Write your code here ```. \nQUESTION:\n{question} {starter}\nANSWER:\n"),
retriever=dict(type=ZeroRetriever),
inferencer=dict(type=GenInferencer, max_out_len=512),
)
TACO_eval_cfg = dict(evaluator=dict(type=TACOEvaluator), pred_role="BOT")
TACO_datasets = [
dict(
type=TACODataset,
abbr="TACO",
path='BAAI/TACO',
num_repeats = 1,
reader_cfg=TACO_reader_cfg,
infer_cfg=TACO_infer_cfg,
eval_cfg=TACO_eval_cfg,
)
]