OpenCompass/configs/models/hf_internlm/hf_internlm2_chat_1_8b.py

13 lines
297 B
Python
Raw Normal View History

from opencompass.models import HuggingFacewithChatTemplate
2024-03-11 22:34:19 +08:00
models = [
dict(
type=HuggingFacewithChatTemplate,
2024-03-11 22:34:19 +08:00
abbr='internlm2-chat-1.8b-hf',
path='internlm/internlm2-chat-1_8b',
max_out_len=1024,
2024-03-11 22:34:19 +08:00
batch_size=8,
run_cfg=dict(num_gpus=1),
2024-03-11 22:34:19 +08:00
)
]