OpenCompass/configs/models/mistral/hf_mistral_7b_v0_2.py

24 lines
568 B
Python
Raw Normal View History

2024-04-09 17:50:23 +08:00
from opencompass.models import HuggingFaceCausalLM
models = [
dict(
abbr='mistral-7b-v0.2-hf',
type=HuggingFaceCausalLM,
path='alpindale/Mistral-7B-v0.2-hf',
model_kwargs=dict(
device_map='auto',
trust_remote_code=True,
),
tokenizer_kwargs=dict(
padding_side='left',
truncation_side='left',
trust_remote_code=True,
),
max_out_len=100,
max_seq_len=2048,
batch_size=8,
run_cfg=dict(num_gpus=1, num_procs=1),
)
]