mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
44 lines
1.3 KiB
Python
44 lines
1.3 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 LongBenchCodeSimEvaluator, LongBenchrepobenchDataset
|
|
|
|
LongBench_repobench_reader_cfg = dict(
|
|
input_columns=['context', 'input'],
|
|
output_column='answers',
|
|
train_split='test',
|
|
test_split='test',
|
|
)
|
|
|
|
LongBench_repobench_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template=dict(
|
|
round=[
|
|
dict(
|
|
role='HUMAN',
|
|
prompt='Please complete the code given below. \n{context}{input}Next line of code:\n',
|
|
),
|
|
],
|
|
),
|
|
),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=GenInferencer, max_out_len=64),
|
|
)
|
|
|
|
LongBench_repobench_eval_cfg = dict(
|
|
evaluator=dict(type=LongBenchCodeSimEvaluator), pred_role='BOT'
|
|
)
|
|
|
|
LongBench_repobench_datasets = [
|
|
dict(
|
|
type=LongBenchrepobenchDataset,
|
|
abbr='LongBench_repobench-p',
|
|
path='opencompass/Longbench',
|
|
name='repobench-p',
|
|
reader_cfg=LongBench_repobench_reader_cfg,
|
|
infer_cfg=LongBench_repobench_infer_cfg,
|
|
eval_cfg=LongBench_repobench_eval_cfg,
|
|
)
|
|
]
|