hf_nanbeige2_8b_chat.py 293 Bytes
Newer Older
1
from opencompass.models import HuggingFacewithChatTemplate
Fengzhe Zhou's avatar
Fengzhe Zhou committed
2
3
4

models = [
    dict(
5
        type=HuggingFacewithChatTemplate,
Fengzhe Zhou's avatar
Fengzhe Zhou committed
6
        abbr='nanbeige2-8b-chat-hf',
7
8
        path='Nanbeige/Nanbeige2-8B-Chat',
        max_out_len=1024,
Fengzhe Zhou's avatar
Fengzhe Zhou committed
9
        batch_size=8,
10
        run_cfg=dict(num_gpus=1),
Fengzhe Zhou's avatar
Fengzhe Zhou committed
11
12
    )
]