OpenCompass/configs/models/chatglm/hf_chatglm3_6b.py

13 lines
278 B
Python
Raw Permalink Normal View History

from opencompass.models import HuggingFacewithChatTemplate
2023-11-13 15:15:34 +08:00
models = [
dict(
type=HuggingFacewithChatTemplate,
2023-11-13 15:15:34 +08:00
abbr='chatglm3-6b-hf',
path='THUDM/chatglm3-6b',
max_out_len=1024,
batch_size=8,
run_cfg=dict(num_gpus=1),
2023-11-13 15:15:34 +08:00
)
]