mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
17 lines
377 B
Python
17 lines
377 B
Python
from opencompass.models import VLLM
|
|
|
|
|
|
models = [
|
|
dict(
|
|
type=VLLM,
|
|
abbr='qwen2-beta-72b-vllm',
|
|
path="Qwen/Qwen2-beta-72B",
|
|
model_kwargs=dict(tensor_parallel_size=4),
|
|
max_out_len=100,
|
|
max_seq_len=2048,
|
|
batch_size=32,
|
|
generation_kwargs=dict(temperature=0),
|
|
run_cfg=dict(num_gpus=4, num_procs=1),
|
|
)
|
|
]
|