ankner commited on
Commit
4e34b72
·
verified ·
1 Parent(s): 18da6ea

Upload tokenizer

Browse files
Files changed (2) hide show
  1. special_tokens_map.json +23 -0
  2. tokenizer_config.json +1 -1
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|EOT|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer_config.json CHANGED
@@ -133,7 +133,7 @@
133
  }
134
  },
135
  "bos_token": "<|begin▁of▁sentence|>",
136
- "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 %}",
137
  "clean_up_tokenization_spaces": false,
138
  "eos_token": "<|EOT|>",
139
  "legacy": true,
 
133
  }
134
  },
135
  "bos_token": "<|begin▁of▁sentence|>",
136
+ "chat_template": "{% set loop_messages = messages %}{% for message in loop_messages %}{% if message['role'] == 'system' %}{% set content = '\n### System\n' + message['content'] | trim + '\n' %}{% elif message['role'] == 'user' %}{% set content = '\n### User\n' + message['content'] | trim %}{% else %}{% set content = '\n\n### Assistant\n' + message['content'] | trim %}{% endif %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% if message['role'] == 'assistant' %}<|EOT|>{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '\n\n### Assistant\n' }}{% endif %}",
137
  "clean_up_tokenization_spaces": false,
138
  "eos_token": "<|EOT|>",
139
  "legacy": true,