mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
25 lines
785 B
Python
25 lines
785 B
Python
from opencompass.models import LmdeployPytorchModel
|
|
|
|
settings = [
|
|
('mistral-7b-v0.1-pytorch', 'mistralai/Mistral-7B-v0.1', 1),
|
|
('mixtral-8x7b-v0.1-pytorch', 'mistralai/Mixtral-8x7B-v0.1', 2),
|
|
('mixtral-8x22b-v0.1-pytorch', 'mistralai/Mixtral-8x22B-v0.1', 4),
|
|
]
|
|
|
|
models = []
|
|
for abbr, path, num_gpus in settings:
|
|
models.append(
|
|
dict(
|
|
type=LmdeployPytorchModel,
|
|
abbr=abbr,
|
|
path=path,
|
|
engine_config=dict(session_len=2048, max_batch_size=16, tp=num_gpus),
|
|
gen_config=dict(top_k=1, temperature=1, top_p=0.9, max_new_tokens=1024),
|
|
max_out_len=1024,
|
|
max_seq_len=2048,
|
|
batch_size=16,
|
|
concurrency=16,
|
|
run_cfg=dict(num_gpus=num_gpus),
|
|
)
|
|
)
|