hf_llama2_70b_chat.py 296 Bytes
Newer Older
1
from opencompass.models import HuggingFacewithChatTemplate
2
3
4

models = [
    dict(
5
        type=HuggingFacewithChatTemplate,
6
        abbr='llama-2-70b-chat-hf',
7
8
        path='meta-llama/Llama-2-70b-chat-hf',
        max_out_len=1024,
9
        batch_size=8,
10
        run_cfg=dict(num_gpus=4),
11
12
    )
]