OpenCompass/opencompass/configs/models/intervl/lmdeploy_intervl_2_5_8b.py

16 lines
483 B
Python
Raw Normal View History

2025-04-01 14:32:23 +08:00
from opencompass.models import TurboMindModelwithChatTemplate
2025-03-27 17:39:31 +08:00
models = [
dict(
2025-04-01 14:32:23 +08:00
type=TurboMindModelwithChatTemplate,
2025-03-27 17:39:31 +08:00
abbr='internvl2_5-8b-turbomind',
path='OpenGVLab/InternVL2_5-8B',
engine_config=dict(session_len=8192, max_batch_size=16, tp=1),
gen_config=dict(top_k=1, temperature=1e-6, top_p=0.9, max_new_tokens=8192),
max_seq_len=8192,
max_out_len=8192,
batch_size=16,
run_cfg=dict(num_gpus=1),
)
]