KeyLM-75M-Instruct / tokenizer_config.json
Eclipse-Senpai's picture
Switch weights to bf16, re-exported from the fp32 checkpoint
9394626 verified
raw
history blame contribute delete
596 Bytes
{
"bos_token": "<s>",
"eos_token": "</s>",
"lowercase": false,
"model_max_length": 2048,
"tokenizer_class": "PreTrainedTokenizerFast",
"unk_token": "[UNK]",
"vocab_size": 12020,
"add_bos_token": false,
"add_eos_token": false,
"clean_up_tokenization_spaces": false,
"chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{% if loop.index0 > 0 %}\n{% endif %}User: {{ message['content'] }}\n{% elif message['role'] == 'assistant' %}Assistant: {{ message['content'] }}</s>{% endif %}{% endfor %}{% if add_generation_prompt %}Assistant: {% endif %}"
}