mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
27 lines
751 B
Python
27 lines
751 B
Python
from opencompass.models import HuggingFaceCausalLM
|
|
|
|
|
|
_meta_template = dict(
|
|
round=[
|
|
dict(role='HUMAN', begin='<_user>'),
|
|
dict(role='BOT', begin='<_bot>', end='<_end>', generate=True),
|
|
],
|
|
)
|
|
|
|
models = [
|
|
dict(
|
|
abbr='telechat-12b-v2-hf',
|
|
type=HuggingFaceCausalLM,
|
|
path='Tele-AI/TeleChat-12B-v2',
|
|
model_kwargs=dict(device_map='auto', torch_dtype='torch.bfloat16', trust_remote_code=True),
|
|
tokenizer_kwargs=dict(padding_side='left', truncation_side='left', trust_remote_code=True),
|
|
meta_template=_meta_template,
|
|
max_out_len=100,
|
|
max_seq_len=2048,
|
|
batch_size=1,
|
|
run_cfg=dict(num_gpus=2),
|
|
end_str='<_end>',
|
|
batch_padding=True,
|
|
)
|
|
]
|