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
10 lines
329 B
Python
10 lines
329 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
# choose a list of datasets
|
|
from .datasets.collections.base_medium import datasets
|
|
# choose a model of interest
|
|
from .models.internlm.internlm_7b import models
|
|
# and output the results in a choosen format
|
|
from .summarizers.medium import summarizer
|