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

* Update with PMMEval * Update * Update __init__.py * Fix Bugs * Delete .pre-commit-config.yaml * Pull merge * Fix pmmeval_gen config --------- Co-authored-by: wanyu <wanyu2018umac@gmail.com> Co-authored-by: wanyu2018umac <42405907+wanyu2018umac@users.noreply.github.com>
15 lines
631 B
Python
Executable File
15 lines
631 B
Python
Executable File
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .flores_gen_2697d7 import PMMEval_flores_datasets
|
|
from .humanevalxl_gen_bdec92 import PMMEval_HumanEvalXL_datasets
|
|
from .mgsm_gen_679720 import PMMEval_MGSM_datasets
|
|
from .mhellaswag_gen_1a6b73 import PMMEval_MHellaswag_datasets
|
|
from .mifeval_gen_79f8fb import PMMEval_MIFEval_datasets
|
|
from .mlogiqa_gen_36c4f9 import PMMEval_MLogiQA_datasets
|
|
from .mmmlu_gen_d5017d import PMMEval_MMMLU_datasets
|
|
from .xnli_gen_973734 import PMMEval_XNLI_datasets
|
|
|
|
|
|
PMMEval_datasets = sum((v for k, v in locals().items() if k.endswith('_datasets')), [])
|