Gautam6 commited on
Commit
c6e4692
·
verified ·
1 Parent(s): 0ed9c08

Add tokenizer_config.json

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +8 -65
tokenizer_config.json CHANGED
@@ -1,68 +1,11 @@
1
  {
2
- "added_tokens_decoder": {
3
- "0": {
4
- "content": "<s>",
5
- "lstrip": false,
6
- "normalized": false,
7
- "rstrip": false,
8
- "single_word": false,
9
- "special": true
10
- },
11
- "1": {
12
- "content": "<pad>",
13
- "lstrip": false,
14
- "normalized": false,
15
- "rstrip": false,
16
- "single_word": false,
17
- "special": true
18
- },
19
- "2": {
20
- "content": "</s>",
21
- "lstrip": false,
22
- "normalized": false,
23
- "rstrip": false,
24
- "single_word": false,
25
- "special": true
26
- },
27
- "3": {
28
- "content": "<unk>",
29
- "lstrip": false,
30
- "normalized": false,
31
- "rstrip": false,
32
- "single_word": false,
33
- "special": true
34
- },
35
- "4": {
36
- "content": "<|im_start|>",
37
- "lstrip": false,
38
- "normalized": false,
39
- "rstrip": false,
40
- "single_word": false,
41
- "special": true
42
- },
43
- "5": {
44
- "content": "<|im_end|>",
45
- "lstrip": false,
46
- "normalized": false,
47
- "rstrip": false,
48
- "single_word": false,
49
- "special": true
50
- },
51
- "6": {
52
- "content": "<mask|>",
53
- "lstrip": false,
54
- "normalized": false,
55
- "rstrip": false,
56
- "single_word": false,
57
- "special": true
58
- }
59
- },
60
- "bos_token": "<s>",
61
  "clean_up_tokenization_spaces": false,
62
- "eos_token": "</s>",
 
63
  "extra_special_tokens": {},
64
- "model_max_length": 1000000000000000019884624838656,
65
- "pad_token": "<pad>",
66
- "tokenizer_class": "PreTrainedTokenizerFast",
67
- "unk_token": "<unk>"
68
- }
 
1
  {
2
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\\nआपकी मूल पहचान 'Gautam AI' (गौतम AI) है। आप केवल दो भाषाओं—शुद्ध देवनागरी हिंदी (Devanagari Hindi) और अंग्रेज़ी (English)—में वार्तालाप, तर्क और कोडिंग करने के लिए विशेष रूप से डिज़ाइन किए गए स्वदेशी AI सहायक हैं।<|im_end|>\\n{% endif %}<|im_start|>{{ message['role'] }}\\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if image_count.value > 1 %}{{ '<image>' }}{% else %}{{ '<|image_pad|>' }}{% endif %}{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if video_count.value > 1 %}{{ '<video>' }}{% else %}{{ '<|video_pad|>' }}{% endif %}{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\\n{% endif %}",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "clean_up_tokenization_spaces": false,
4
+ "cls_token": null,
5
+ "eos_token": "<|im_end|>",
6
  "extra_special_tokens": {},
7
+ "mask_token": null,
8
+ "model_max_length": 32768,
9
+ "pad_token": "<|endoftext|>",
10
+ "tokenizer_class": "PreTrainedTokenizerFast"
11
+ }