Unverified Commit 1ea88d58 authored by Fengzhe Zhou's avatar Fengzhe Zhou Committed by GitHub
Browse files

[Sync] Bump version to 0.1.8 (#576)

parent d3de5c41
from opencompass.openicl.icl_prompt_template import PromptTemplate from opencompass.openicl.icl_prompt_template import PromptTemplate
from opencompass.openicl.icl_retriever import ZeroRetriever from opencompass.openicl.icl_retriever import ZeroRetriever
from opencompass.openicl.icl_inferencer import GenInferencer from opencompass.openicl.icl_inferencer import GenInferencer
from opencompass.datasets import HFDataset, HumanEvaluator, humaneval_postprocess from opencompass.datasets import HumanevalDataset, HumanEvaluator, humaneval_postprocess
humaneval_reader_cfg = dict( humaneval_reader_cfg = dict(
input_columns=['prompt'], output_column='task_id', train_split='test') input_columns=['prompt'], output_column='task_id', train_split='test')
...@@ -27,8 +27,9 @@ humaneval_eval_cfg = dict( ...@@ -27,8 +27,9 @@ humaneval_eval_cfg = dict(
humaneval_datasets = [ humaneval_datasets = [
dict( dict(
type=HFDataset, abbr='openai_humaneval',
path='openai_humaneval', type=HumanevalDataset,
path='./data/humaneval/human-eval-v2-20210705.jsonl',
reader_cfg=humaneval_reader_cfg, reader_cfg=humaneval_reader_cfg,
infer_cfg=humaneval_infer_cfg, infer_cfg=humaneval_infer_cfg,
eval_cfg=humaneval_eval_cfg) eval_cfg=humaneval_eval_cfg)
......
__version__ = '0.1.7' __version__ = '0.1.8'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment