Training in progress, epoch 4
Browse files- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- tokenizer.json +6 -16
- tokenizer_config.json +2 -2
- training_args.bin +1 -1
adapter_config.json
CHANGED
@@ -20,14 +20,14 @@
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": null,
|
22 |
"target_modules": [
|
23 |
-
"v_proj",
|
24 |
-
"q_proj",
|
25 |
"o_proj",
|
|
|
26 |
"k_proj",
|
27 |
-
"gate_proj",
|
28 |
"down_proj",
|
29 |
-
"
|
30 |
-
"
|
|
|
|
|
31 |
],
|
32 |
"task_type": "CAUSAL_LM",
|
33 |
"use_dora": false,
|
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": null,
|
22 |
"target_modules": [
|
|
|
|
|
23 |
"o_proj",
|
24 |
+
"lm_head",
|
25 |
"k_proj",
|
|
|
26 |
"down_proj",
|
27 |
+
"q_proj",
|
28 |
+
"v_proj",
|
29 |
+
"up_proj",
|
30 |
+
"gate_proj"
|
31 |
],
|
32 |
"task_type": "CAUSAL_LM",
|
33 |
"use_dora": false,
|
adapter_model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 581159464
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9973c705b95e559438be01c07432b30fb1ba07e53766858e472b876462569a4
|
3 |
size 581159464
|
tokenizer.json
CHANGED
@@ -31,23 +31,13 @@
|
|
31 |
"special": true
|
32 |
}
|
33 |
],
|
34 |
-
"normalizer":
|
35 |
-
|
36 |
-
"
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
},
|
41 |
-
{
|
42 |
-
"type": "Replace",
|
43 |
-
"pattern": {
|
44 |
-
"String": " "
|
45 |
-
},
|
46 |
-
"content": "▁"
|
47 |
-
}
|
48 |
-
]
|
49 |
},
|
50 |
-
"pre_tokenizer": null,
|
51 |
"post_processor": {
|
52 |
"type": "TemplateProcessing",
|
53 |
"single": [
|
|
|
31 |
"special": true
|
32 |
}
|
33 |
],
|
34 |
+
"normalizer": null,
|
35 |
+
"pre_tokenizer": {
|
36 |
+
"type": "Metaspace",
|
37 |
+
"replacement": "▁",
|
38 |
+
"prepend_scheme": "first",
|
39 |
+
"split": false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
},
|
|
|
41 |
"post_processor": {
|
42 |
"type": "TemplateProcessing",
|
43 |
"single": [
|
tokenizer_config.json
CHANGED
@@ -30,10 +30,10 @@
|
|
30 |
},
|
31 |
"additional_special_tokens": [],
|
32 |
"bos_token": "<s>",
|
33 |
-
"chat_template": "{{
|
34 |
"clean_up_tokenization_spaces": false,
|
35 |
"eos_token": "</s>",
|
36 |
-
"legacy":
|
37 |
"model_max_length": 1000000000000000019884624838656,
|
38 |
"pad_token": "<unk>",
|
39 |
"sp_model_kwargs": {},
|
|
|
30 |
},
|
31 |
"additional_special_tokens": [],
|
32 |
"bos_token": "<s>",
|
33 |
+
"chat_template": "{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content'] %}\n {%- set loop_messages = messages[1:] %}\n{%- else %}\n {%- set loop_messages = messages %}\n{%- endif %}\n\n{{- bos_token }}\n{%- for message in loop_messages %}\n {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}\n {{- raise_exception('After the optional system message, conversation roles must alternate user/assistant/user/assistant/...') }}\n {%- endif %}\n {%- if message['role'] == 'user' %}\n {%- if loop.first and system_message is defined %}\n {{- ' [INST] ' + system_message + '\\n\\n' + message['content'] + ' [/INST]' }}\n {%- else %}\n {{- ' [INST] ' + message['content'] + ' [/INST]' }}\n {%- endif %}\n {%- elif message['role'] == 'assistant' %}\n {{- ' ' + message['content'] + eos_token}}\n {%- else %}\n {{- raise_exception('Only user and assistant roles are supported, with the exception of an initial optional system message!') }}\n {%- endif %}\n{%- endfor %}\n",
|
34 |
"clean_up_tokenization_spaces": false,
|
35 |
"eos_token": "</s>",
|
36 |
+
"legacy": false,
|
37 |
"model_max_length": 1000000000000000019884624838656,
|
38 |
"pad_token": "<unk>",
|
39 |
"sp_model_kwargs": {},
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5176
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7adebdb42a35ddd960b8853115c9ab2145ddbbe1d2399b6ee8b301fca32bea97
|
3 |
size 5176
|