Shotaro30678 commited on
Commit
471ab71
1 Parent(s): a38c73a

Trained with Unsloth

Browse files

Upload model trained with Unsloth 2x faster

added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "<pad>": 32000,
3
+ "[/EMOTION]": 32004,
4
+ "[/INST]": 32002,
5
+ "[EMOTION]": 32003,
6
+ "[INST]": 32001
7
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "[INST]",
4
+ "[/INST]",
5
+ "[EMOTION]",
6
+ "[/EMOTION]"
7
+ ],
8
+ "bos_token": {
9
+ "content": "<s>",
10
+ "lstrip": false,
11
+ "normalized": false,
12
+ "rstrip": false,
13
+ "single_word": false
14
+ },
15
+ "eos_token": {
16
+ "content": "</s>",
17
+ "lstrip": false,
18
+ "normalized": false,
19
+ "rstrip": false,
20
+ "single_word": false
21
+ },
22
+ "pad_token": {
23
+ "content": "<pad>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false
28
+ },
29
+ "unk_token": {
30
+ "content": "<unk>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false
35
+ }
36
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ },
30
+ "32000": {
31
+ "content": "<pad>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "32001": {
39
+ "content": "[INST]",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": true
45
+ },
46
+ "32002": {
47
+ "content": "[/INST]",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": true
53
+ },
54
+ "32003": {
55
+ "content": "[EMOTION]",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": true
61
+ },
62
+ "32004": {
63
+ "content": "[/EMOTION]",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ }
70
+ },
71
+ "additional_special_tokens": [
72
+ "[INST]",
73
+ "[/INST]",
74
+ "[EMOTION]",
75
+ "[/EMOTION]"
76
+ ],
77
+ "bos_token": "<s>",
78
+ "chat_template": "{% if messages[0]['role'] == 'system' %}{% set system_message = messages[0]['content']['dialog'] %}{% set loop_messages = messages[1:] %}{% else %}{% set system_message = '' %}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% set emotion = message['content']['emotion'] %}{% set dialog = message['content']['dialog'].strip() %}{% if message['role'] == 'user' %}{% if loop.index0 == 0 and system_message != '' %}{{ bos_token + '[INST]<<SYS>>\\n' + system_message + '\\n<</SYS>>\\n\\n' + '[EMOTION] ' + emotion + ' [/EMOTION] ' + dialog }}{% else %}{{ bos_token + '[INST] [EMOTION] ' + emotion + ' [/EMOTION] ' + dialog }}{% endif %}{% else %}{% if loop.last and add_generation_prompt %}{{ ' [/INST] [EMOTION] ' + emotion + ' [/EMOTION] ' }}{% else %}{{ ' [/INST] [EMOTION] ' + emotion + ' [/EMOTION] ' + dialog + ' ' + eos_token + '\\n' }}{% endif %}{% endif %}{% endfor %}",
79
+ "clean_up_tokenization_spaces": true,
80
+ "eos_token": "</s>",
81
+ "legacy": false,
82
+ "model_max_length": 4096,
83
+ "pad_token": "<pad>",
84
+ "padding_side": "left",
85
+ "sp_model_kwargs": {},
86
+ "tokenizer_class": "LlamaTokenizer",
87
+ "unk_token": "<unk>",
88
+ "use_default_system_prompt": false
89
+ }