mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
8 lines
238 B
Python
8 lines
238 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from ..piqa.piqa_gen_1194eb import piqa_datasets
|
|
from ..nq.nq_gen_c788f6 import nq_datasets
|
|
|
|
datasets = sum((v for k, v in locals().items() if k.endswith('_datasets')), [])
|