mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
15 lines
400 B
Python
15 lines
400 B
Python
from opencompass.models import VLLMwithChatTemplate
|
|
|
|
models = [
|
|
dict(
|
|
type=VLLMwithChatTemplate,
|
|
abbr='mistral-large-instruct-2407-vllm',
|
|
path='mistralai/Mistral-Large-Instruct-2407',
|
|
model_kwargs=dict(tensor_parallel_size=8),
|
|
max_out_len=256,
|
|
batch_size=16,
|
|
generation_kwargs=dict(temperature=0),
|
|
run_cfg=dict(num_gpus=8),
|
|
)
|
|
]
|