OpenCompass/configs/models/bluelm/hf_bluelm_7b_base.py

13 lines
272 B
Python
Raw Permalink Normal View History

from opencompass.models import HuggingFaceBaseModel
2023-11-27 16:06:49 +08:00
models = [
dict(
type=HuggingFaceBaseModel,
2023-11-27 16:06:49 +08:00
abbr='bluelm-7b-base-hf',
path='vivo-ai/BlueLM-7B-Base',
max_out_len=1024,
2023-11-27 16:06:49 +08:00
batch_size=8,
run_cfg=dict(num_gpus=1),
2023-11-27 16:06:49 +08:00
)
]