OpenCompass/configs/models/moss/hf_moss_moon_003_sft.py

29 lines
853 B
Python
Raw Normal View History

2023-07-04 22:11:33 +08:00
from opencompass.models import HuggingFaceCausalLM
2024-02-21 11:19:24 +08:00
_meta_template = dict(
round=[
dict(role='HUMAN', begin='<|Human|>: ', end='<eoh>\n'),
dict(role='BOT', begin='<|MOSS|>: ', end='<eom>\n', generate=True),
],
)
2023-07-04 22:11:33 +08:00
models = [
dict(
type=HuggingFaceCausalLM,
abbr='moss-moon-003-sft-hf',
path='fnlp/moss-moon-003-sft',
tokenizer_path='fnlp/moss-moon-003-sft',
2023-07-04 22:11:33 +08:00
tokenizer_kwargs=dict(
padding_side='left',
truncation_side='left',
trust_remote_code=True,
),
2024-02-21 11:19:24 +08:00
meta_template=_meta_template,
2023-07-04 22:11:33 +08:00
max_out_len=100,
max_seq_len=2048,
batch_size=8,
model_kwargs=dict(trust_remote_code=True, device_map='auto', revision='7119d446173035561f40977fb9cb999995bb7517'),
2023-07-04 22:11:33 +08:00
run_cfg=dict(num_gpus=1, num_procs=1),
)
]