jacob-danner commited on
Commit
62103b2
·
verified ·
1 Parent(s): bf39e38

feat: training run with increased lora rank, application, and lora alpha

Browse files
README.md CHANGED
@@ -16,7 +16,7 @@ should probably proofread and complete it, then remove this comment. -->
16
 
17
  This model is a fine-tuned version of [google/gemma-3-1b-pt](https://huggingface.co/google/gemma-3-1b-pt) on an unknown dataset.
18
  It achieves the following results on the evaluation set:
19
- - Loss: 0.4730
20
 
21
  ## Model description
22
 
@@ -35,35 +35,30 @@ More information needed
35
  ### Training hyperparameters
36
 
37
  The following hyperparameters were used during training:
38
- - learning_rate: 0.0001
39
- - train_batch_size: 8
40
- - eval_batch_size: 8
41
  - seed: 42
42
  - gradient_accumulation_steps: 4
43
- - total_train_batch_size: 32
44
  - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
45
  - lr_scheduler_type: linear
46
- - num_epochs: 15
47
 
48
  ### Training results
49
 
50
  | Training Loss | Epoch | Step | Validation Loss |
51
  |:-------------:|:-----:|:----:|:---------------:|
52
- | 2.1658 | 1.0 | 24 | 2.0002 |
53
- | 1.8154 | 2.0 | 48 | 1.5934 |
54
- | 1.3517 | 3.0 | 72 | 1.0746 |
55
- | 0.8524 | 4.0 | 96 | 0.6859 |
56
- | 0.6272 | 5.0 | 120 | 0.5927 |
57
- | 0.5657 | 6.0 | 144 | 0.5468 |
58
- | 0.5226 | 7.0 | 168 | 0.5092 |
59
- | 0.4984 | 8.0 | 192 | 0.4978 |
60
- | 0.489 | 9.0 | 216 | 0.4904 |
61
- | 0.482 | 10.0 | 240 | 0.4851 |
62
- | 0.4766 | 11.0 | 264 | 0.4806 |
63
- | 0.4722 | 12.0 | 288 | 0.4773 |
64
- | 0.4693 | 13.0 | 312 | 0.4751 |
65
- | 0.467 | 14.0 | 336 | 0.4736 |
66
- | 0.4657 | 15.0 | 360 | 0.4730 |
67
 
68
 
69
  ### Framework versions
 
16
 
17
  This model is a fine-tuned version of [google/gemma-3-1b-pt](https://huggingface.co/google/gemma-3-1b-pt) on an unknown dataset.
18
  It achieves the following results on the evaluation set:
19
+ - Loss: 0.5270
20
 
21
  ## Model description
22
 
 
35
  ### Training hyperparameters
36
 
37
  The following hyperparameters were used during training:
38
+ - learning_rate: 6.5e-05
39
+ - train_batch_size: 16
40
+ - eval_batch_size: 16
41
  - seed: 42
42
  - gradient_accumulation_steps: 4
43
+ - total_train_batch_size: 64
44
  - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
45
  - lr_scheduler_type: linear
46
+ - num_epochs: 20
47
 
48
  ### Training results
49
 
50
  | Training Loss | Epoch | Step | Validation Loss |
51
  |:-------------:|:-----:|:----:|:---------------:|
52
+ | 1.6969 | 1.0 | 12 | 0.9517 |
53
+ | 0.7666 | 2.0 | 24 | 0.6638 |
54
+ | 0.5743 | 3.0 | 36 | 0.5845 |
55
+ | 0.4948 | 4.0 | 48 | 0.5431 |
56
+ | 0.436 | 5.0 | 60 | 0.5176 |
57
+ | 0.4011 | 6.0 | 72 | 0.5075 |
58
+ | 0.3743 | 7.0 | 84 | 0.5028 |
59
+ | 0.3507 | 8.0 | 96 | 0.5099 |
60
+ | 0.3313 | 9.0 | 108 | 0.5267 |
61
+ | 0.3121 | 10.0 | 120 | 0.5270 |
 
 
 
 
 
62
 
63
 
64
  ### Framework versions
adapter_config.json CHANGED
@@ -13,18 +13,23 @@
13
  "layers_pattern": null,
14
  "layers_to_transform": null,
15
  "loftq_config": {},
16
- "lora_alpha": 8,
17
  "lora_bias": false,
18
- "lora_dropout": 0.0,
19
  "megatron_config": null,
20
  "megatron_core": "megatron.core",
21
  "modules_to_save": null,
22
  "peft_type": "LORA",
23
- "r": 8,
24
  "rank_pattern": {},
25
  "revision": null,
26
  "target_modules": [
 
 
 
 
27
  "q_proj",
 
28
  "v_proj"
29
  ],
30
  "task_type": "CAUSAL_LM",
 
13
  "layers_pattern": null,
14
  "layers_to_transform": null,
15
  "loftq_config": {},
16
+ "lora_alpha": 128,
17
  "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
  "megatron_config": null,
20
  "megatron_core": "megatron.core",
21
  "modules_to_save": null,
22
  "peft_type": "LORA",
23
+ "r": 64,
24
  "rank_pattern": {},
25
  "revision": null,
26
  "target_modules": [
27
+ "up_proj",
28
+ "down_proj",
29
+ "gate_proj",
30
+ "k_proj",
31
  "q_proj",
32
+ "o_proj",
33
  "v_proj"
34
  ],
35
  "task_type": "CAUSAL_LM",
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:87d8f68c8f6c2d9f20c8bf09e9f637b4f1fa51610c91bac87203015f3e99e5b0
3
- size 2995512
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca16fca62c89606b182d92af1ed21f074b5d55c904bd235fc61590f1c4639f0e
3
+ size 208780928
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:85d04b7842181c0e4f6d2b93c8b56af00eb900b9352bab086d1a999b7e61ed88
3
  size 5368
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72b5334e34efcb5c7b466960624b42c17554302ae914dac04c033c2b588ba158
3
  size 5368