OpenCompass/configs/datasets/truthfulqa/truthfulqa_gen_1e7d8d.py
Hubert 5a9539f375
[Feat] add safety to collections (#185)
* [Feat] add safety to collections

* minor fix
2023-08-11 11:19:26 +08:00

40 lines
1.4 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 TruthfulQADataset, TruthfulQAEvaluator
truthfulqa_reader_cfg = dict(
input_columns=['question'],
output_column='reference',
train_split='validation',
test_split='validation')
# TODO: allow empty output-column
truthfulqa_infer_cfg = dict(
prompt_template=dict(type=PromptTemplate, template='{question}'),
retriever=dict(type=ZeroRetriever),
inferencer=dict(type=GenInferencer))
# Metrics such as 'truth' and 'info' needs
# OPENAI_API_KEY with finetuned models in it.
# Please use your own finetuned openai model with keys and refers to
# the source code for more details
# Metrics such as 'bleurt', 'rouge', 'bleu' are free to test
# When key is set to "ENV", the key will be fetched from the environment
# variable $OPENAI_API_KEY. Otherwise, set key in here directly.
truthfulqa_eval_cfg = dict(
evaluator=dict(
type=TruthfulQAEvaluator, metrics=('truth', 'info'), key='ENV'), )
truthfulqa_datasets = [
dict(
abbr='truthful_qa',
type=TruthfulQADataset,
path='truthful_qa',
name='generation',
reader_cfg=truthfulqa_reader_cfg,
infer_cfg=truthfulqa_infer_cfg,
eval_cfg=truthfulqa_eval_cfg)
]