hf_llama_30b.py 265 Bytes
Newer Older
1
from opencompass.models import HuggingFaceBaseModel
cky's avatar
cky committed
2
3
4

models = [
    dict(
5
        type=HuggingFaceBaseModel,
Leymore's avatar
Leymore committed
6
        abbr='llama-30b-hf',
7
8
        path='huggyllama/llama-30b',
        max_out_len=1024,
cky's avatar
cky committed
9
        batch_size=8,
10
        run_cfg=dict(num_gpus=2),
cky's avatar
cky committed
11
12
    )
]