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

* add bag of new models: baichuan2, tigerbot, vicuna v1.5 * update * re-organize models * update readme * update
11 lines
350 B
Python
11 lines
350 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.opt.hf_opt_125m import opt125m
|
|
from .models.opt.hf_opt_350m import opt350m
|
|
|
|
datasets = [*siqa_datasets, *winograd_datasets]
|
|
models = [opt125m, opt350m]
|