AswanthCManoj
commited on
Commit
•
e351811
1
Parent(s):
cea848b
Training in progress, step 25
Browse files- adapter_config.json +5 -1
- adapter_model.safetensors +2 -2
- added_tokens.json +5 -1
- special_tokens_map.json +14 -2
- tokenizer_config.json +34 -2
- training_args.bin +1 -1
adapter_config.json
CHANGED
@@ -18,8 +18,12 @@
|
|
18 |
"rank_pattern": {},
|
19 |
"revision": null,
|
20 |
"target_modules": [
|
21 |
-
"
|
|
|
|
|
22 |
"up_proj",
|
|
|
|
|
23 |
"down_proj"
|
24 |
],
|
25 |
"task_type": "CAUSAL_LM"
|
|
|
18 |
"rank_pattern": {},
|
19 |
"revision": null,
|
20 |
"target_modules": [
|
21 |
+
"q_proj",
|
22 |
+
"k_proj",
|
23 |
+
"v_proj",
|
24 |
"up_proj",
|
25 |
+
"gate_proj",
|
26 |
+
"o_proj",
|
27 |
"down_proj"
|
28 |
],
|
29 |
"task_type": "CAUSAL_LM"
|
adapter_model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1e4faaaf1521ae3385817b6025147785b31bd432d919e7b5d5e9d1d9bce160a
|
3 |
+
size 692219248
|
added_tokens.json
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
{
|
|
|
|
|
2 |
"<|im_end|>": 32000,
|
3 |
-
"<|im_start|>": 32001
|
|
|
|
|
4 |
}
|
|
|
1 |
{
|
2 |
+
"<|end|>": 32005,
|
3 |
+
"<|function_call|>": 32003,
|
4 |
"<|im_end|>": 32000,
|
5 |
+
"<|im_start|>": 32001,
|
6 |
+
"<|response|>": 32004,
|
7 |
+
"<|thoughts|>": 32002
|
8 |
}
|
special_tokens_map.json
CHANGED
@@ -1,6 +1,18 @@
|
|
1 |
{
|
2 |
-
"bos_token":
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
"pad_token": "</s>",
|
5 |
"unk_token": "<unk>"
|
6 |
}
|
|
|
1 |
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|im_end|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
"pad_token": "</s>",
|
17 |
"unk_token": "<unk>"
|
18 |
}
|
tokenizer_config.json
CHANGED
@@ -41,13 +41,45 @@
|
|
41 |
"rstrip": false,
|
42 |
"single_word": false,
|
43 |
"special": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
},
|
46 |
"additional_special_tokens": [],
|
47 |
"bos_token": "<s>",
|
48 |
-
"chat_template": "{% for message in messages %}
|
49 |
"clean_up_tokenization_spaces": false,
|
50 |
-
"eos_token": "
|
51 |
"legacy": true,
|
52 |
"model_max_length": 1000000000000000019884624838656,
|
53 |
"pad_token": "</s>",
|
|
|
41 |
"rstrip": false,
|
42 |
"single_word": false,
|
43 |
"special": true
|
44 |
+
},
|
45 |
+
"32002": {
|
46 |
+
"content": "<|thoughts|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": true,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": false
|
52 |
+
},
|
53 |
+
"32003": {
|
54 |
+
"content": "<|function_call|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": true,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": false
|
60 |
+
},
|
61 |
+
"32004": {
|
62 |
+
"content": "<|response|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": true,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": false
|
68 |
+
},
|
69 |
+
"32005": {
|
70 |
+
"content": "<|end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": true,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": false
|
76 |
}
|
77 |
},
|
78 |
"additional_special_tokens": [],
|
79 |
"bos_token": "<s>",
|
80 |
+
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
81 |
"clean_up_tokenization_spaces": false,
|
82 |
+
"eos_token": "<|im_end|>",
|
83 |
"legacy": true,
|
84 |
"model_max_length": 1000000000000000019884624838656,
|
85 |
"pad_token": "</s>",
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4664
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0b0b916294bb1f5fed78f3d6296a880199d679bd0d0ab34bb146601e758b1936
|
3 |
size 4664
|