phinniaspp commited on
Commit
f2ddd52
·
verified ·
1 Parent(s): 3ac437b

Training in progress, step 100

Browse files
adapter_config.json CHANGED
@@ -1,14 +1,8 @@
1
  {
2
- "alora_invocation_tokens": null,
3
  "alpha_pattern": {},
4
- "arrow_config": null,
5
  "auto_mapping": null,
6
- "base_model_name_or_path": null,
7
  "bias": "none",
8
- "corda_config": null,
9
- "ensure_weight_tying": false,
10
- "eva_config": null,
11
- "exclude_modules": null,
12
  "fan_in_fan_out": false,
13
  "inference_mode": true,
14
  "init_lora_weights": true,
@@ -17,32 +11,24 @@
17
  "layers_to_transform": null,
18
  "loftq_config": {},
19
  "lora_alpha": 32,
20
- "lora_bias": false,
21
  "lora_dropout": 0.05,
22
- "lora_ga_config": null,
23
  "megatron_config": null,
24
  "megatron_core": "megatron.core",
25
  "modules_to_save": null,
26
  "peft_type": "LORA",
27
- "peft_version": "0.19.1",
28
- "qalora_group_size": 16,
29
  "r": 16,
30
  "rank_pattern": {},
31
  "revision": null,
32
  "target_modules": [
33
- "q_proj",
 
34
  "gate_proj",
35
- "up_proj",
36
- "k_proj",
37
  "v_proj",
38
- "down_proj",
39
- "o_proj"
40
  ],
41
- "target_parameters": null,
42
  "task_type": "CAUSAL_LM",
43
- "trainable_token_indices": null,
44
- "use_bdlora": null,
45
  "use_dora": false,
46
- "use_qalora": false,
47
  "use_rslora": false
48
  }
 
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,
8
  "init_lora_weights": true,
 
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",
17
  "modules_to_save": null,
18
  "peft_type": "LORA",
 
 
19
  "r": 16,
20
  "rank_pattern": {},
21
  "revision": null,
22
  "target_modules": [
23
+ "o_proj",
24
+ "down_proj",
25
  "gate_proj",
26
+ "q_proj",
 
27
  "v_proj",
28
+ "k_proj",
29
+ "up_proj"
30
  ],
 
31
  "task_type": "CAUSAL_LM",
 
 
32
  "use_dora": false,
 
33
  "use_rslora": false
34
  }
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e0c28ae9fda7ed077120f5397e44e06d2691b2ea2ada8010ba232ded303bcf15
3
- size 83953808
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe43da4e97eebeaa0158b36a25c885b64c459b8e04460cfe58ff057a1a9e33d
3
+ size 83945744
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json CHANGED
@@ -1,6 +1,11 @@
1
  {
2
  "version": "1.0",
3
- "truncation": null,
 
 
 
 
 
4
  "padding": null,
5
  "added_tokens": [
6
  {
 
1
  {
2
  "version": "1.0",
3
+ "truncation": {
4
+ "direction": "Right",
5
+ "max_length": 1024,
6
+ "strategy": "LongestFirst",
7
+ "stride": 0
8
+ },
9
  "padding": null,
10
  "added_tokens": [
11
  {
tokenizer_config.json CHANGED
@@ -1,19 +1,45 @@
1
  {
 
 
2
  "add_prefix_space": null,
3
- "backend": "tokenizers",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "bos_token": "<s>",
 
5
  "clean_up_tokenization_spaces": false,
6
  "eos_token": "</s>",
7
- "extra_special_tokens": [],
8
- "is_local": false,
9
  "legacy": false,
10
- "local_files_only": false,
11
  "model_max_length": 1000000000000000019884624838656,
12
  "pad_token": "</s>",
13
  "padding_side": "right",
14
  "sp_model_kwargs": {},
15
  "spaces_between_special_tokens": false,
16
- "tokenizer_class": "TokenizersBackend",
17
  "unk_token": "<unk>",
18
  "use_default_system_prompt": false
19
  }
 
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>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
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
  "padding_side": "right",
40
  "sp_model_kwargs": {},
41
  "spaces_between_special_tokens": false,
42
+ "tokenizer_class": "LlamaTokenizer",
43
  "unk_token": "<unk>",
44
  "use_default_system_prompt": false
45
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a7636bfd15768feeae5b8b0ea6c6ea570e3bbf66f8df8000ffdf82d9d44941a2
3
- size 5777
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8306ac097284337a989527ee29aa84391a90dbcd0632818db692700704590264
3
+ size 5969