2023-12-08 10:00:11 +08:00
|
|
|
from mmengine.config import read_base
|
|
|
|
|
|
|
|
with read_base():
|
2025-01-20 19:17:38 +08:00
|
|
|
from opencompass.configs.datasets.ARC_c.ARC_c_clean_ppl import \
|
|
|
|
ARC_c_datasets
|
|
|
|
from opencompass.configs.datasets.ceval.ceval_clean_ppl import \
|
|
|
|
ceval_datasets
|
|
|
|
from opencompass.configs.datasets.hellaswag.hellaswag_clean_ppl import \
|
|
|
|
hellaswag_datasets
|
2024-08-22 14:48:45 +08:00
|
|
|
from opencompass.configs.datasets.mmlu.mmlu_clean_ppl import mmlu_datasets
|
2025-01-20 19:17:38 +08:00
|
|
|
from opencompass.configs.models.hf_llama.hf_llama2_7b import \
|
|
|
|
models as hf_llama2_7b_model
|
|
|
|
from opencompass.configs.models.qwen.hf_qwen_7b import \
|
|
|
|
models as hf_qwen_7b_model
|
2024-08-22 14:48:45 +08:00
|
|
|
from opencompass.configs.models.yi.hf_yi_6b import models as hf_yi_6b_model
|
|
|
|
from opencompass.configs.summarizers.contamination import summarizer
|
2023-12-08 10:00:11 +08:00
|
|
|
|
2025-01-20 19:17:38 +08:00
|
|
|
datasets = [
|
|
|
|
*ceval_datasets, *mmlu_datasets, *hellaswag_datasets, *ARC_c_datasets
|
|
|
|
]
|
2023-12-08 10:00:11 +08:00
|
|
|
models = [*hf_yi_6b_model, *hf_qwen_7b_model, *hf_llama2_7b_model]
|