anyiwang/mistral_4
Browse files- README.md +5 -4
- adapter_config.json +9 -6
- adapter_model.safetensors +1 -1
- tokenizer_config.json +1 -0
- training_args.bin +2 -2
README.md
CHANGED
@@ -27,17 +27,18 @@ print(output["generated_text"])
|
|
27 |
|
28 |
## Training procedure
|
29 |
|
|
|
30 |
|
31 |
|
32 |
This model was trained with SFT.
|
33 |
|
34 |
### Framework versions
|
35 |
|
36 |
-
- TRL: 0.
|
37 |
-
- Transformers: 4.
|
38 |
- Pytorch: 2.1.0+cu118
|
39 |
-
- Datasets: 3.
|
40 |
-
- Tokenizers: 0.
|
41 |
|
42 |
## Citations
|
43 |
|
|
|
27 |
|
28 |
## Training procedure
|
29 |
|
30 |
+
|
31 |
|
32 |
|
33 |
This model was trained with SFT.
|
34 |
|
35 |
### Framework versions
|
36 |
|
37 |
+
- TRL: 0.13.0
|
38 |
+
- Transformers: 4.47.1
|
39 |
- Pytorch: 2.1.0+cu118
|
40 |
+
- Datasets: 3.2.0
|
41 |
+
- Tokenizers: 0.21.0
|
42 |
|
43 |
## Citations
|
44 |
|
adapter_config.json
CHANGED
@@ -3,6 +3,8 @@
|
|
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,
|
8 |
"init_lora_weights": true,
|
@@ -11,6 +13,7 @@
|
|
11 |
"layers_to_transform": null,
|
12 |
"loftq_config": {},
|
13 |
"lora_alpha": 32,
|
|
|
14 |
"lora_dropout": 0.05,
|
15 |
"megatron_config": null,
|
16 |
"megatron_core": "megatron.core",
|
@@ -20,14 +23,14 @@
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": null,
|
22 |
"target_modules": [
|
23 |
-
"gate_proj",
|
24 |
-
"k_proj",
|
25 |
"q_proj",
|
26 |
-
"
|
27 |
-
"
|
28 |
"up_proj",
|
29 |
-
"
|
30 |
-
"
|
|
|
|
|
31 |
],
|
32 |
"task_type": "CAUSAL_LM",
|
33 |
"use_dora": false,
|
|
|
3 |
"auto_mapping": null,
|
4 |
"base_model_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
|
5 |
"bias": "none",
|
6 |
+
"eva_config": null,
|
7 |
+
"exclude_modules": null,
|
8 |
"fan_in_fan_out": false,
|
9 |
"inference_mode": true,
|
10 |
"init_lora_weights": true,
|
|
|
13 |
"layers_to_transform": null,
|
14 |
"loftq_config": {},
|
15 |
"lora_alpha": 32,
|
16 |
+
"lora_bias": false,
|
17 |
"lora_dropout": 0.05,
|
18 |
"megatron_config": null,
|
19 |
"megatron_core": "megatron.core",
|
|
|
23 |
"rank_pattern": {},
|
24 |
"revision": null,
|
25 |
"target_modules": [
|
|
|
|
|
26 |
"q_proj",
|
27 |
+
"k_proj",
|
28 |
+
"lm_head",
|
29 |
"up_proj",
|
30 |
+
"v_proj",
|
31 |
+
"o_proj",
|
32 |
+
"gate_proj",
|
33 |
+
"down_proj"
|
34 |
],
|
35 |
"task_type": "CAUSAL_LM",
|
36 |
"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 694431312
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:271ccaaf4a588fe9d0d16b982cd1950befc5e2068d8e224316c02497189c38dc
|
3 |
size 694431312
|
tokenizer_config.json
CHANGED
@@ -33,6 +33,7 @@
|
|
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>",
|
|
|
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 |
+
"extra_special_tokens": {},
|
37 |
"legacy": false,
|
38 |
"model_max_length": 1000000000000000019884624838656,
|
39 |
"pad_token": "<unk>",
|
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:ce616ed5cf59c52861396a564fc65ae638d6771cd3ecdd2b8fe56255abb796e0
|
3 |
+
size 5560
|