Delete tokenizer_config.json
Browse files- tokenizer_config.json +0 -15
tokenizer_config.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"tokenizer_class": "LlamaTokenizer",
|
| 3 |
-
"vocab_file": "model.model",
|
| 4 |
-
"model_max_length": 65536,
|
| 5 |
-
"add_prefix_space": false,
|
| 6 |
-
"legacy": true,
|
| 7 |
-
"use_chat_template": true,
|
| 8 |
-
|
| 9 |
-
"additional_special_tokens": ["<|system|>", "<|user|>", "<|assistant|>"],
|
| 10 |
-
"eos_token": "<|endoftext|>",
|
| 11 |
-
"add_generation_prompt": true,
|
| 12 |
-
"add_bos_token": false,
|
| 13 |
-
"add_eos_token": false,
|
| 14 |
-
"chat_template": "{% for m in messages %}{% if m.role == 'system' %}<|system|>{{ m.content | trim }}<|system|>{% elif m.role == 'user' %}<|user|>{{ m.content | trim }}<|user|>{% elif m.role == 'assistant' %}<|assistant|>{{ m.content | trim }}<|assistant|>{% endif %}{% endfor %}{% if add_generation_prompt and messages[-1].role != 'assistant' %}<|assistant|>{% endif %}"
|
| 15 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|