mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
9 lines
319 B
Python
9 lines
319 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_7b import models
|
||
|
# and output the results in a choosen format
|
||
|
from .summarizers.medium import summarizer
|