Metis-1.4-base / tokenizer_config.json
GiuliannoV's picture
Release Metis-1.4 base checkpoint
eb27551 verified
raw
history blame contribute delete
609 Bytes
{
"add_bos_token": true,
"add_eos_token": true,
"bos_token": "<bos>",
"eos_token": "<eos>",
"unk_token": "<unk>",
"pad_token": "<pad>",
"clean_up_tokenization_spaces": false,
"model_max_length": 1024,
"tokenizer_class": "PreTrainedTokenizerFast",
"chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}System: {{ message['content'] }}\n{% elif message['role'] == 'user' %}User: {{ message['content'] }}\n{% elif message['role'] == 'assistant' %}Assistant: {{ message['content'] }}\n{% endif %}{% endfor %}{% if add_generation_prompt %}Assistant: {% endif %}"
}