hf_deepseek_coder_33b_instruct.py 307 Bytes
Newer Older
1
from opencompass.models import HuggingFacewithChatTemplate
2
3
4

models = [
    dict(
5
        type=HuggingFacewithChatTemplate,
6
        abbr='deepseek-coder-33b-hf',
7
8
        path='deepseek-ai/deepseek-coder-33b-instruct',
        max_out_len=1024,
9
        batch_size=8,
10
        run_cfg=dict(num_gpus=2),
11
    )
12
]