CoolFace
Modelpublic

DeepXR/Helion-OSC

sourceHugging Faceapache-2.0updated 10mo agoView on Hugging Face
4likes65downloads
tokenizer_config.json77 linesDownload Raw Back to root
1{2  "add_bos_token": true,3  "add_eos_token": false,4  "add_prefix_space": true,5  "added_tokens_decoder": {6    "0": {7      "content": "<|pad|>",8      "lstrip": false,9      "normalized": false,10      "rstrip": false,11      "single_word": false,12      "special": true13    },14    "1": {15      "content": "<|begin_of_text|>",16      "lstrip": false,17      "normalized": false,18      "rstrip": false,19      "single_word": false,20      "special": true21    },22    "2": {23      "content": "<|end_of_text|>",24      "lstrip": false,25      "normalized": false,26      "rstrip": false,27      "single_word": false,28      "special": true29    },30    "3": {31      "content": "<|code_start|>",32      "lstrip": false,33      "normalized": false,34      "rstrip": false,35      "single_word": false,36      "special": true37    },38    "4": {39      "content": "<|code_end|>",40      "lstrip": false,41      "normalized": false,42      "rstrip": false,43      "single_word": false,44      "special": true45    },46    "5": {47      "content": "<|math_start|>",48      "lstrip": false,49      "normalized": false,50      "rstrip": false,51      "single_word": false,52      "special": true53    },54    "6": {55      "content": "<|math_end|>",56      "lstrip": false,57      "normalized": false,58      "rstrip": false,59      "single_word": false,60      "special": true61    }62  },63  "bos_token": "<|begin_of_text|>",64  "chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{{ '<|user|>\n' + message['content'] + '<|end|>\n' }}{% elif message['role'] == 'assistant' %}{{ '<|assistant|>\n' + message['content'] + '<|end|>\n' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>\n' }}{% endif %}",65  "clean_up_tokenization_spaces": false,66  "eos_token": "<|end_of_text|>",67  "legacy": true,68  "model_max_length": 262144,69  "pad_token": "<|pad|>",70  "padding_side": "left",71  "sp_model_kwargs": {},72  "spaces_between_special_tokens": false,73  "tokenizer_class": "PreTrainedTokenizerFast",74  "truncation_side": "right",75  "unk_token": null,76  "use_default_system_prompt": false77}