mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* Update CascadeEvaluator * Update CascadeEvaluator * Update CascadeEvaluator * Update Config * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update
41 lines
1.1 KiB
Python
41 lines
1.1 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 CustomDataset
|
|
from opencompass.evaluator import MATHVerifyEvaluator
|
|
|
|
math_reader_cfg = dict(input_columns=['problem'], output_column='solution')
|
|
|
|
math_infer_cfg = dict(
|
|
prompt_template=dict(
|
|
type=PromptTemplate,
|
|
template=dict(
|
|
round=[
|
|
dict(
|
|
role='HUMAN',
|
|
prompt='{problem}\nPlease reason step by step, and put your final answer within \\boxed{}.',
|
|
),
|
|
]
|
|
),
|
|
),
|
|
retriever=dict(type=ZeroRetriever),
|
|
inferencer=dict(type=GenInferencer),
|
|
)
|
|
|
|
|
|
math_eval_cfg = dict(
|
|
evaluator=dict(type=MATHVerifyEvaluator),
|
|
)
|
|
|
|
math_datasets = [
|
|
dict(
|
|
type=CustomDataset,
|
|
abbr='math-500',
|
|
path='opencompass/math',
|
|
file_name='test_prm800k_500.jsonl',
|
|
reader_cfg=math_reader_cfg,
|
|
infer_cfg=math_infer_cfg,
|
|
eval_cfg=math_eval_cfg,
|
|
)
|
|
]
|