End of training
Browse files
DPO/adapter_config.json
CHANGED
|
@@ -20,13 +20,13 @@
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
-
"
|
|
|
|
| 24 |
"v_proj",
|
| 25 |
"q_proj",
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"down_proj"
|
| 29 |
-
"gate_proj"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
|
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
+
"up_proj",
|
| 24 |
+
"o_proj",
|
| 25 |
"v_proj",
|
| 26 |
"q_proj",
|
| 27 |
+
"k_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"down_proj"
|
|
|
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
DPO/adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 167832240
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff6e040a505a298435ee58552b938292bf111ae714f41cc7d826e18909606676
|
| 3 |
size 167832240
|
README.md
CHANGED
|
@@ -17,6 +17,16 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
# mistral_dpo
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [mistralai/Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1) on the None dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
## Model description
|
| 22 |
|
|
@@ -44,10 +54,17 @@ The following hyperparameters were used during training:
|
|
| 44 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 45 |
- lr_scheduler_type: linear
|
| 46 |
- lr_scheduler_warmup_steps: 20
|
| 47 |
-
- training_steps:
|
| 48 |
|
| 49 |
### Training results
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
|
| 53 |
### Framework versions
|
|
|
|
| 17 |
# mistral_dpo
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [mistralai/Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1) on the None dataset.
|
| 20 |
+
It achieves the following results on the evaluation set:
|
| 21 |
+
- Loss: 0.6867
|
| 22 |
+
- Rewards/chosen: 0.0388
|
| 23 |
+
- Rewards/rejected: 0.0248
|
| 24 |
+
- Rewards/accuracies: 0.5990
|
| 25 |
+
- Rewards/margins: 0.0141
|
| 26 |
+
- Logps/rejected: -54.3813
|
| 27 |
+
- Logps/chosen: -67.8578
|
| 28 |
+
- Logits/rejected: -0.5593
|
| 29 |
+
- Logits/chosen: -0.6842
|
| 30 |
|
| 31 |
## Model description
|
| 32 |
|
|
|
|
| 54 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 55 |
- lr_scheduler_type: linear
|
| 56 |
- lr_scheduler_warmup_steps: 20
|
| 57 |
+
- training_steps: 100
|
| 58 |
|
| 59 |
### Training results
|
| 60 |
|
| 61 |
+
| Training Loss | Epoch | Step | Validation Loss | Rewards/chosen | Rewards/rejected | Rewards/accuracies | Rewards/margins | Logps/rejected | Logps/chosen | Logits/rejected | Logits/chosen |
|
| 62 |
+
|:-------------:|:------:|:----:|:---------------:|:--------------:|:----------------:|:------------------:|:---------------:|:--------------:|:------------:|:---------------:|:-------------:|
|
| 63 |
+
| 0.6925 | 0.0214 | 20 | 0.6915 | 0.0109 | 0.0076 | 0.5925 | 0.0034 | -54.5535 | -68.1368 | -0.5594 | -0.6846 |
|
| 64 |
+
| 0.6903 | 0.0427 | 40 | 0.6893 | 0.0276 | 0.0195 | 0.5909 | 0.0081 | -54.4341 | -67.9702 | -0.5593 | -0.6844 |
|
| 65 |
+
| 0.6886 | 0.0641 | 60 | 0.6877 | 0.0353 | 0.0236 | 0.5974 | 0.0117 | -54.3930 | -67.8934 | -0.5592 | -0.6842 |
|
| 66 |
+
| 0.6862 | 0.0855 | 80 | 0.6869 | 0.0385 | 0.0250 | 0.6055 | 0.0136 | -54.3795 | -67.8606 | -0.5593 | -0.6842 |
|
| 67 |
+
| 0.6865 | 0.1068 | 100 | 0.6867 | 0.0388 | 0.0248 | 0.5990 | 0.0141 | -54.3813 | -67.8578 | -0.5593 | -0.6842 |
|
| 68 |
|
| 69 |
|
| 70 |
### Framework versions
|
reference/adapter_config.json
CHANGED
|
@@ -20,13 +20,13 @@
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
-
"
|
|
|
|
| 24 |
"v_proj",
|
| 25 |
"q_proj",
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"down_proj"
|
| 29 |
-
"gate_proj"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
|
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
+
"up_proj",
|
| 24 |
+
"o_proj",
|
| 25 |
"v_proj",
|
| 26 |
"q_proj",
|
| 27 |
+
"k_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"down_proj"
|
|
|
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
runs/Jun12_04-15-39_129-146-74-240/events.out.tfevents.1718165740.129-146-74-240.216284.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5527dec82746117e10e341d7d638da3014f5f58ea726a94a0a73f327b984e44
|
| 3 |
+
size 13347
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5688
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a501fa5a4ae26c6409a60d5b0c60df4bcc4cbaea877a0cec2e000b74cd6d6627
|
| 3 |
size 5688
|