CoolFace
Modelpublic

rombodawg/Everyone-Coder-33b-Base

sourceHugging Faceotherupdated 3y agoView on Hugging Face
21likes144downloads
tokenizer_config.json35 linesDownload Raw Back to root
1{2  "add_bos_token": true,3  "add_eos_token": false,4  "bos_token": {5    "__type": "AddedToken",6    "content": "<|begin▁of▁sentence|>",7    "lstrip": false,8    "normalized": true,9    "rstrip": false,10    "single_word": false11  },12  "clean_up_tokenization_spaces": false,13  "eos_token": {14    "__type": "AddedToken",15    "content": "<|EOT|>",16    "lstrip": false,17    "normalized": true,18    "rstrip": false,19    "single_word": false20  },21  "legacy": true,22  "model_max_length": 16384,23  "pad_token": {24    "__type": "AddedToken",25    "content": "<|end▁of▁sentence|>",26    "lstrip": false,27    "normalized": true,28    "rstrip": false,29    "single_word": false30  },31  "sp_model_kwargs": {},32  "unk_token": null,33  "tokenizer_class": "LlamaTokenizerFast",34  "chat_template": "{% if not add_generation_prompt is defined %}\n{% set add_generation_prompt = false %}\n{% endif %}\n{%- set ns = namespace(found=false) -%}\n{%- for message in messages -%}\n    {%- if message['role'] == 'system' -%}\n        {%- set ns.found = true -%}\n    {%- endif -%}\n{%- endfor -%}\n{{bos_token}}{%- if not ns.found -%}\n{{'You are an AI programming assistant, utilizing the Deepseek Coder model, developed by Deepseek Company, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer\\n'}}\n{%- endif %}\n{%- for message in messages %}\n    {%- if message['role'] == 'system' %}\n{{ message['content'] }}\n    {%- else %}\n        {%- if message['role'] == 'user' %}\n{{'### Instruction:\\n' + message['content'] + '\\n'}}\n        {%- else %}\n{{'### Response:\\n' + message['content'] + '\\n<|EOT|>\\n'}}\n        {%- endif %}\n    {%- endif %}\n{%- endfor %}\n{% if add_generation_prompt %}\n{{'### Response:'}}\n{% endif %}"35}