Training in progress, step 2
Browse files- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- special_tokens_map.json +18 -0
- tokenizer_config.json +3 -4
- training_args.bin +3 -0
adapter_config.json
CHANGED
|
@@ -23,13 +23,13 @@
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
| 26 |
-
"
|
| 27 |
-
"q_proj",
|
| 28 |
-
"up_proj",
|
| 29 |
"down_proj",
|
|
|
|
| 30 |
"v_proj",
|
| 31 |
-
"
|
| 32 |
-
"
|
|
|
|
| 33 |
],
|
| 34 |
"task_type": null,
|
| 35 |
"use_dora": false,
|
|
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
| 26 |
+
"gate_proj",
|
|
|
|
|
|
|
| 27 |
"down_proj",
|
| 28 |
+
"k_proj",
|
| 29 |
"v_proj",
|
| 30 |
+
"o_proj",
|
| 31 |
+
"up_proj",
|
| 32 |
+
"q_proj"
|
| 33 |
],
|
| 34 |
"task_type": null,
|
| 35 |
"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 167829552
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f3651ec744c1c6141c5226cdfce012723b94a84bc960c92fc542644c54b1dbb
|
| 3 |
size 167829552
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|eot_id|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"mask_token": "_",
|
| 17 |
+
"pad_token": "<|eot_id|>"
|
| 18 |
+
}
|
tokenizer_config.json
CHANGED
|
@@ -2052,14 +2052,13 @@
|
|
| 2052 |
"bos_token": "<|begin_of_text|>",
|
| 2053 |
"chat_template": "{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
|
| 2054 |
"clean_up_tokenization_spaces": true,
|
| 2055 |
-
"eos_token": "<|
|
|
|
|
| 2056 |
"model_input_names": [
|
| 2057 |
"input_ids",
|
| 2058 |
"attention_mask"
|
| 2059 |
],
|
| 2060 |
"model_max_length": 1000000000000000019884624838656,
|
| 2061 |
-
"pad_token": "<|
|
| 2062 |
-
"padding_side": "left",
|
| 2063 |
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 2064 |
}
|
| 2065 |
-
|
|
|
|
| 2052 |
"bos_token": "<|begin_of_text|>",
|
| 2053 |
"chat_template": "{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
|
| 2054 |
"clean_up_tokenization_spaces": true,
|
| 2055 |
+
"eos_token": "<|eot_id|>",
|
| 2056 |
+
"mask_token": "_",
|
| 2057 |
"model_input_names": [
|
| 2058 |
"input_ids",
|
| 2059 |
"attention_mask"
|
| 2060 |
],
|
| 2061 |
"model_max_length": 1000000000000000019884624838656,
|
| 2062 |
+
"pad_token": "<|eot_id|>",
|
|
|
|
| 2063 |
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 2064 |
}
|
|
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:334a2ff54e16eb2bb0396240852d7807cd526546768b10a90e17979b75388356
|
| 3 |
+
size 5112
|