mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* update logo_icon and fix type in docs * rebase: * update get_started * update .gitignore * remove extra lines * remove extra 'S' * update * update * update docs * update docs * update docs --------- Co-authored-by: gaotongxiao <gaotongxiao@gmail.com>
51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .datasets.winograd.winograd_ppl import winograd_datasets
|
|
from .datasets.siqa.siqa_gen import siqa_datasets
|
|
|
|
datasets = [*siqa_datasets, *winograd_datasets]
|
|
|
|
from opencompass.models import HuggingFaceCausalLM
|
|
|
|
# OPT-350M
|
|
opt350m = dict(
|
|
type=HuggingFaceCausalLM,
|
|
# the folowing are HuggingFaceCausalLM init parameters
|
|
path='facebook/opt-350m',
|
|
tokenizer_path='facebook/opt-350m',
|
|
tokenizer_kwargs=dict(
|
|
padding_side='left',
|
|
truncation_side='left',
|
|
proxies=None,
|
|
trust_remote_code=True),
|
|
model_kwargs=dict(device_map='auto'),
|
|
max_seq_len=2048,
|
|
# the folowing are not HuggingFaceCausalLM init parameters
|
|
abbr='opt350m', # Model abbreviation
|
|
max_out_len=100, # Maximum number of generated tokens
|
|
batch_size=64,
|
|
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
|
|
)
|
|
|
|
# OPT-125M
|
|
opt125m = dict(
|
|
type=HuggingFaceCausalLM,
|
|
# the folowing are HuggingFaceCausalLM init parameters
|
|
path='facebook/opt-125m',
|
|
tokenizer_path='facebook/opt-125m',
|
|
tokenizer_kwargs=dict(
|
|
padding_side='left',
|
|
truncation_side='left',
|
|
proxies=None,
|
|
trust_remote_code=True),
|
|
model_kwargs=dict(device_map='auto'),
|
|
max_seq_len=2048,
|
|
# the folowing are not HuggingFaceCausalLM init parameters
|
|
abbr='opt125m', # Model abbreviation
|
|
max_out_len=100, # Maximum number of generated tokens
|
|
batch_size=128,
|
|
run_cfg=dict(num_gpus=1), # Run configuration for specifying resource requirements
|
|
)
|
|
|
|
models = [opt350m, opt125m] |