mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
[Fix] Rollback opt model configs (#1213)
This commit is contained in:
parent
d656e818f8
commit
0b50112dc1
@ -1,12 +1,12 @@
|
||||
from opencompass.models import HuggingFaceBaseModel
|
||||
|
||||
models = [
|
||||
dict(
|
||||
type=HuggingFaceBaseModel,
|
||||
abbr='opt-125m-hf',
|
||||
path='facebook/opt-125m',
|
||||
max_out_len=1024,
|
||||
batch_size=64,
|
||||
run_cfg=dict(num_gpus=1),
|
||||
)
|
||||
]
|
||||
opt125m = dict(
|
||||
type=HuggingFaceBaseModel,
|
||||
abbr='opt-125m-hf',
|
||||
path='facebook/opt-125m',
|
||||
max_out_len=1024,
|
||||
batch_size=64,
|
||||
run_cfg=dict(num_gpus=1),
|
||||
)
|
||||
|
||||
models = [opt125m]
|
||||
|
@ -1,12 +1,12 @@
|
||||
from opencompass.models import HuggingFaceBaseModel
|
||||
|
||||
models = [
|
||||
dict(
|
||||
type=HuggingFaceBaseModel,
|
||||
abbr='opt-350m-hf',
|
||||
path='facebook/opt-350m',
|
||||
max_out_len=1024,
|
||||
batch_size=32,
|
||||
run_cfg=dict(num_gpus=1),
|
||||
)
|
||||
]
|
||||
opt350m = dict(
|
||||
type=HuggingFaceBaseModel,
|
||||
abbr='opt-350m-hf',
|
||||
path='facebook/opt-350m',
|
||||
max_out_len=1024,
|
||||
batch_size=32,
|
||||
run_cfg=dict(num_gpus=1),
|
||||
)
|
||||
|
||||
models = [opt350m]
|
||||
|
Loading…
Reference in New Issue
Block a user