Training in progress, step 100
Browse files- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- tokenizer.json +6 -16
- tokenizer_config.json +3 -2
- training_args.bin +2 -2
adapter_config.json
CHANGED
@@ -20,14 +20,14 @@
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": null,
|
22 |
"target_modules": [
|
|
|
|
|
23 |
"v_proj",
|
24 |
-
"
|
25 |
"lm_head",
|
|
|
26 |
"gate_proj",
|
27 |
-
"
|
28 |
-
"q_proj",
|
29 |
-
"k_proj",
|
30 |
-
"o_proj"
|
31 |
],
|
32 |
"task_type": "CAUSAL_LM",
|
33 |
"use_dora": false,
|
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": null,
|
22 |
"target_modules": [
|
23 |
+
"o_proj",
|
24 |
+
"q_proj",
|
25 |
"v_proj",
|
26 |
+
"up_proj",
|
27 |
"lm_head",
|
28 |
+
"down_proj",
|
29 |
"gate_proj",
|
30 |
+
"k_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 1204678496
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:663f68dc67babe56ff9eae5c61d63161eb8f118e1bbcb627534dc7738fe2629d
|
3 |
size 1204678496
|
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
@@ -1,6 +1,7 @@
|
|
1 |
{
|
2 |
"add_bos_token": true,
|
3 |
"add_eos_token": false,
|
|
|
4 |
"added_tokens_decoder": {
|
5 |
"0": {
|
6 |
"content": "<unk>",
|
@@ -29,10 +30,10 @@
|
|
29 |
},
|
30 |
"additional_special_tokens": [],
|
31 |
"bos_token": "<s>",
|
32 |
-
"chat_template": "{{
|
33 |
"clean_up_tokenization_spaces": false,
|
34 |
"eos_token": "</s>",
|
35 |
-
"legacy":
|
36 |
"model_max_length": 1000000000000000019884624838656,
|
37 |
"pad_token": "</s>",
|
38 |
"sp_model_kwargs": {},
|
|
|
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>",
|
|
|
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": "</s>",
|
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
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d58cdd79bce229df13f60e7ad64c2b169028ae8baad1bf5277076a3e4619f41e
|
3 |
+
size 5624
|