OpenCompass/configs/models/zephyr/hf_zephyr_7b_beta.py

13 lines
292 B
Python
Raw Normal View History

from opencompass.models import HuggingFacewithChatTemplate
2023-11-13 15:15:34 +08:00
models = [
dict(
type=HuggingFacewithChatTemplate,
abbr='zephyr-7b-beta-hf',
path='HuggingFaceH4/zephyr-7b-beta',
max_out_len=1024,
2023-11-13 15:15:34 +08:00
batch_size=8,
run_cfg=dict(num_gpus=1),
2023-11-13 15:15:34 +08:00
)
]