2023-07-04 21:34:55 +08:00
|
|
|
from mmengine.config import read_base
|
|
|
|
|
|
|
|
with read_base():
|
|
|
|
from .groups.agieval import agieval_summary_groups
|
|
|
|
from .groups.mmlu import mmlu_summary_groups
|
2023-08-31 11:29:05 +08:00
|
|
|
from .groups.cmmlu import cmmlu_summary_groups
|
2023-07-04 21:34:55 +08:00
|
|
|
from .groups.ceval import ceval_summary_groups
|
|
|
|
from .groups.bbh import bbh_summary_groups
|
|
|
|
from .groups.GaokaoBench import GaokaoBench_summary_groups
|
|
|
|
from .groups.flores import flores_summary_groups
|
2023-08-31 11:29:05 +08:00
|
|
|
from .groups.tydiqa import tydiqa_summary_groups
|
|
|
|
from .groups.xiezhi import xiezhi_summary_groups
|
2023-09-22 17:42:08 +08:00
|
|
|
from .groups.scibench import scibench_summary_groups
|
2024-05-06 15:29:34 +08:00
|
|
|
from .groups.mgsm import mgsm_summary_groups
|
2023-07-04 21:34:55 +08:00
|
|
|
|
|
|
|
summarizer = dict(
|
|
|
|
summary_groups=sum([v for k, v in locals().items() if k.endswith("_summary_groups")], []),
|
|
|
|
)
|