Around6827 commited on
Commit
52208ff
·
1 Parent(s): 6eefc2b

Training in progress, epoch 1

Browse files
README.md CHANGED
@@ -5,6 +5,7 @@ tags:
5
  model-index:
6
  - name: lora-out
7
  results: []
 
8
  ---
9
 
10
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -29,6 +30,18 @@ More information needed
29
 
30
  ## Training procedure
31
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  ### Training hyperparameters
33
 
34
  The following hyperparameters were used during training:
@@ -52,6 +65,7 @@ The following hyperparameters were used during training:
52
 
53
  ### Framework versions
54
 
 
55
  - Transformers 4.34.0.dev0
56
  - Pytorch 2.0.1+cu117
57
  - Datasets 2.7.1
 
5
  model-index:
6
  - name: lora-out
7
  results: []
8
+ library_name: peft
9
  ---
10
 
11
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
30
 
31
  ## Training procedure
32
 
33
+
34
+ The following `bitsandbytes` quantization config was used during training:
35
+ - quant_method: bitsandbytes
36
+ - load_in_8bit: True
37
+ - load_in_4bit: False
38
+ - llm_int8_threshold: 6.0
39
+ - llm_int8_skip_modules: None
40
+ - llm_int8_enable_fp32_cpu_offload: False
41
+ - llm_int8_has_fp16_weight: False
42
+ - bnb_4bit_quant_type: fp4
43
+ - bnb_4bit_use_double_quant: False
44
+ - bnb_4bit_compute_dtype: float32
45
  ### Training hyperparameters
46
 
47
  The following hyperparameters were used during training:
 
65
 
66
  ### Framework versions
67
 
68
+ - PEFT 0.6.0.dev0
69
  - Transformers 4.34.0.dev0
70
  - Pytorch 2.0.1+cu117
71
  - Datasets 2.7.1
adapter_config.json CHANGED
@@ -16,13 +16,13 @@
16
  "rank_pattern": {},
17
  "revision": null,
18
  "target_modules": [
19
- "up_proj",
20
- "q_proj",
21
  "v_proj",
22
- "o_proj",
23
  "down_proj",
24
- "gate_proj",
25
- "k_proj"
 
26
  ],
27
  "task_type": "CAUSAL_LM"
28
  }
 
16
  "rank_pattern": {},
17
  "revision": null,
18
  "target_modules": [
19
+ "gate_proj",
 
20
  "v_proj",
21
+ "up_proj",
22
  "down_proj",
23
+ "q_proj",
24
+ "k_proj",
25
+ "o_proj"
26
  ],
27
  "task_type": "CAUSAL_LM"
28
  }
adapter_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:967246f51fffdb6114ad2b9080f1d47feac7334865d1a3ef322667e47289beb2
3
  size 319977229
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0007c230ec65d5d38b5df6fe5ad5b5287f2b7ae2a5e3557e34499bf114a8d69e
3
  size 319977229
config.json CHANGED
@@ -16,12 +16,24 @@
16
  "num_key_value_heads": 32,
17
  "pad_token_id": 0,
18
  "pretraining_tp": 1,
 
 
 
 
 
 
 
 
 
 
 
 
19
  "rms_norm_eps": 1e-05,
20
  "rope_scaling": null,
21
  "rope_theta": 10000.0,
22
  "tie_word_embeddings": false,
23
  "torch_dtype": "float16",
24
  "transformers_version": "4.34.0.dev0",
25
- "use_cache": true,
26
  "vocab_size": 32000
27
  }
 
16
  "num_key_value_heads": 32,
17
  "pad_token_id": 0,
18
  "pretraining_tp": 1,
19
+ "quantization_config": {
20
+ "bnb_4bit_compute_dtype": "float32",
21
+ "bnb_4bit_quant_type": "fp4",
22
+ "bnb_4bit_use_double_quant": false,
23
+ "llm_int8_enable_fp32_cpu_offload": false,
24
+ "llm_int8_has_fp16_weight": false,
25
+ "llm_int8_skip_modules": null,
26
+ "llm_int8_threshold": 6.0,
27
+ "load_in_4bit": false,
28
+ "load_in_8bit": true,
29
+ "quant_method": "bitsandbytes"
30
+ },
31
  "rms_norm_eps": 1e-05,
32
  "rope_scaling": null,
33
  "rope_theta": 10000.0,
34
  "tie_word_embeddings": false,
35
  "torch_dtype": "float16",
36
  "transformers_version": "4.34.0.dev0",
37
+ "use_cache": false,
38
  "vocab_size": 32000
39
  }
tokenizer_config.json CHANGED
@@ -1,26 +1,28 @@
1
  {
 
 
2
  "added_tokens_decoder": {
3
  "0": {
4
  "content": "<unk>",
5
- "lstrip": false,
6
- "normalized": true,
7
- "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
  "1": {
12
  "content": "<s>",
13
- "lstrip": false,
14
- "normalized": true,
15
- "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
  "2": {
20
  "content": "</s>",
21
- "lstrip": false,
22
- "normalized": true,
23
- "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  }
@@ -33,7 +35,11 @@
33
  "model_max_length": 1000000000000000019884624838656,
34
  "pad_token": "<unk>",
35
  "sp_model_kwargs": {},
 
36
  "tokenizer_class": "LlamaTokenizer",
 
 
37
  "unk_token": "<unk>",
38
- "use_default_system_prompt": true
 
39
  }
 
1
  {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
  "added_tokens_decoder": {
5
  "0": {
6
  "content": "<unk>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": true,
10
  "single_word": false,
11
  "special": true
12
  },
13
  "1": {
14
  "content": "<s>",
15
+ "lstrip": true,
16
+ "normalized": false,
17
+ "rstrip": true,
18
  "single_word": false,
19
  "special": true
20
  },
21
  "2": {
22
  "content": "</s>",
23
+ "lstrip": true,
24
+ "normalized": false,
25
+ "rstrip": true,
26
  "single_word": false,
27
  "special": true
28
  }
 
35
  "model_max_length": 1000000000000000019884624838656,
36
  "pad_token": "<unk>",
37
  "sp_model_kwargs": {},
38
+ "spaces_between_special_tokens": false,
39
  "tokenizer_class": "LlamaTokenizer",
40
+ "tokenizer_file": "/N/u/oleykin/BigRed200/.cache/huggingface/hub/models--NousResearch--Llama-2-7b-hf/snapshots/dacdfcde31297e34b19ee0e7532f29586d2c17bc/tokenizer.json",
41
+ "trust_remote_code": false,
42
  "unk_token": "<unk>",
43
+ "use_default_system_prompt": true,
44
+ "use_fast": true
45
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3ad6007b3cafb42c644da99bc92c29c7845b9ccccc005d1f6ccd837fcdb5308b
3
  size 4475
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fbb5692d84707ba0da73df5c8db6584484c9710f3dd89c322d18f3312498cb9
3
  size 4475