Training in progress, step 20
Browse files- adapter_config.json +7 -7
- adapter_model.safetensors +1 -1
- special_tokens_map.json +1 -12
- tokenizer_config.json +2 -7
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"alpha_pattern": {},
|
| 3 |
"auto_mapping": null,
|
| 4 |
-
"base_model_name_or_path": "
|
| 5 |
"bias": "none",
|
| 6 |
"fan_in_fan_out": false,
|
| 7 |
"inference_mode": true,
|
|
@@ -20,16 +20,16 @@
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
-
"gate_proj",
|
| 24 |
-
"q_proj",
|
| 25 |
-
"o_proj",
|
| 26 |
"up_proj",
|
| 27 |
-
"down_proj",
|
| 28 |
"lm_head",
|
| 29 |
"v_proj",
|
| 30 |
-
"k_proj"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
],
|
| 32 |
-
"task_type": "
|
| 33 |
"use_dora": false,
|
| 34 |
"use_rslora": false
|
| 35 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"alpha_pattern": {},
|
| 3 |
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
|
| 5 |
"bias": "none",
|
| 6 |
"fan_in_fan_out": false,
|
| 7 |
"inference_mode": true,
|
|
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
|
|
|
|
|
|
|
|
|
| 23 |
"up_proj",
|
|
|
|
| 24 |
"lm_head",
|
| 25 |
"v_proj",
|
| 26 |
+
"k_proj",
|
| 27 |
+
"o_proj",
|
| 28 |
+
"down_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"gate_proj"
|
| 31 |
],
|
| 32 |
+
"task_type": "CAUSAL_LM",
|
| 33 |
"use_dora": false,
|
| 34 |
"use_rslora": false
|
| 35 |
}
|
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:d8b935e79a59bb626236a5073a5c82fde1750b50ceb6f5d6af6f9a3782389aac
|
| 3 |
size 1204678496
|
special_tokens_map.json
CHANGED
|
@@ -1,9 +1,4 @@
|
|
| 1 |
{
|
| 2 |
-
"additional_special_tokens": [
|
| 3 |
-
"<unk>",
|
| 4 |
-
"<s>",
|
| 5 |
-
"</s>"
|
| 6 |
-
],
|
| 7 |
"bos_token": {
|
| 8 |
"content": "<s>",
|
| 9 |
"lstrip": false,
|
|
@@ -18,13 +13,7 @@
|
|
| 18 |
"rstrip": false,
|
| 19 |
"single_word": false
|
| 20 |
},
|
| 21 |
-
"pad_token":
|
| 22 |
-
"content": "</s>",
|
| 23 |
-
"lstrip": false,
|
| 24 |
-
"normalized": false,
|
| 25 |
-
"rstrip": false,
|
| 26 |
-
"single_word": false
|
| 27 |
-
},
|
| 28 |
"unk_token": {
|
| 29 |
"content": "<unk>",
|
| 30 |
"lstrip": false,
|
|
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"bos_token": {
|
| 3 |
"content": "<s>",
|
| 4 |
"lstrip": false,
|
|
|
|
| 13 |
"rstrip": false,
|
| 14 |
"single_word": false
|
| 15 |
},
|
| 16 |
+
"pad_token": "</s>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
"unk_token": {
|
| 18 |
"content": "<unk>",
|
| 19 |
"lstrip": false,
|
tokenizer_config.json
CHANGED
|
@@ -27,11 +27,7 @@
|
|
| 27 |
"special": true
|
| 28 |
}
|
| 29 |
},
|
| 30 |
-
"additional_special_tokens": [
|
| 31 |
-
"<unk>",
|
| 32 |
-
"<s>",
|
| 33 |
-
"</s>"
|
| 34 |
-
],
|
| 35 |
"bos_token": "<s>",
|
| 36 |
"chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
|
| 37 |
"clean_up_tokenization_spaces": false,
|
|
@@ -42,7 +38,6 @@
|
|
| 42 |
"sp_model_kwargs": {},
|
| 43 |
"spaces_between_special_tokens": false,
|
| 44 |
"tokenizer_class": "LlamaTokenizer",
|
| 45 |
-
"truncation_side": "left",
|
| 46 |
"unk_token": "<unk>",
|
| 47 |
-
"use_default_system_prompt":
|
| 48 |
}
|
|
|
|
| 27 |
"special": true
|
| 28 |
}
|
| 29 |
},
|
| 30 |
+
"additional_special_tokens": [],
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
"bos_token": "<s>",
|
| 32 |
"chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
|
| 33 |
"clean_up_tokenization_spaces": false,
|
|
|
|
| 38 |
"sp_model_kwargs": {},
|
| 39 |
"spaces_between_special_tokens": false,
|
| 40 |
"tokenizer_class": "LlamaTokenizer",
|
|
|
|
| 41 |
"unk_token": "<unk>",
|
| 42 |
+
"use_default_system_prompt": false
|
| 43 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 4984
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b81185b42267849e51f909b05370a93fb25137e318555b8e1b3c2dcd94ac7dac
|
| 3 |
size 4984
|