mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
15 lines
608 B
Python
15 lines
608 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from opencompass.configs.datasets.demo.demo_gsm8k_chat_gen import \
|
|
gsm8k_datasets
|
|
from opencompass.configs.datasets.demo.demo_math_chat_gen import \
|
|
math_datasets
|
|
from opencompass.configs.models.hf_internlm.hf_internlm2_chat_1_8b import \
|
|
models as hf_internlm2_chat_1_8b_models
|
|
from opencompass.configs.models.qwen.hf_qwen2_1_5b_instruct import \
|
|
models as hf_qwen2_1_5b_instruct_models
|
|
|
|
datasets = gsm8k_datasets + math_datasets
|
|
models = hf_qwen2_1_5b_instruct_models + hf_internlm2_chat_1_8b_models
|