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

* update docs * update docs * update * update en docs * update * update --------- Co-authored-by: Leymore <zfz-960727@163.com>
11 lines
342 B
Python
11 lines
342 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .datasets.siqa.siqa_gen import siqa_datasets
|
|
from .datasets.winograd.winograd_ppl import winograd_datasets
|
|
from .models.hf_opt_125m import opt125m
|
|
from .models.hf_opt_350m import opt350m
|
|
|
|
datasets = [*siqa_datasets, *winograd_datasets]
|
|
models = [opt125m, opt350m]
|