feat: training run with increased lora rank, application, and lora alpha
Browse files- README.md +16 -21
- adapter_config.json +8 -3
- adapter_model.safetensors +2 -2
- training_args.bin +1 -1
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.
|
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:
|
39 |
-
- train_batch_size:
|
40 |
-
- eval_batch_size:
|
41 |
- seed: 42
|
42 |
- gradient_accumulation_steps: 4
|
43 |
-
- total_train_batch_size:
|
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:
|
47 |
|
48 |
### Training results
|
49 |
|
50 |
| Training Loss | Epoch | Step | Validation Loss |
|
51 |
|:-------------:|:-----:|:----:|:---------------:|
|
52 |
-
|
|
53 |
-
|
|
54 |
-
|
|
55 |
-
| 0.
|
56 |
-
| 0.
|
57 |
-
| 0.
|
58 |
-
| 0.
|
59 |
-
| 0.
|
60 |
-
| 0.
|
61 |
-
| 0.
|
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":
|
17 |
"lora_bias": false,
|
18 |
-
"lora_dropout": 0.
|
19 |
"megatron_config": null,
|
20 |
"megatron_core": "megatron.core",
|
21 |
"modules_to_save": null,
|
22 |
"peft_type": "LORA",
|
23 |
-
"r":
|
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:
|
3 |
-
size
|
|
|
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:
|
3 |
size 5368
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:72b5334e34efcb5c7b466960624b42c17554302ae914dac04c033c2b588ba158
|
3 |
size 5368
|