End of training
Browse files- README.md +27 -24
- generation_config.json +1 -0
README.md
CHANGED
@@ -13,8 +13,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
13 |
|
14 |
This model is a fine-tuned version of [](https://huggingface.co/) on an unknown dataset.
|
15 |
It achieves the following results on the evaluation set:
|
16 |
-
- Loss:
|
17 |
-
- Exact Match: 0.
|
18 |
|
19 |
## Model description
|
20 |
|
@@ -34,37 +34,40 @@ More information needed
|
|
34 |
|
35 |
The following hyperparameters were used during training:
|
36 |
- learning_rate: 0.001
|
37 |
-
- train_batch_size:
|
38 |
- eval_batch_size: 8
|
39 |
- seed: 42
|
|
|
|
|
40 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
41 |
-
- lr_scheduler_type:
|
|
|
42 |
- num_epochs: 20
|
43 |
|
44 |
### Training results
|
45 |
|
46 |
| Training Loss | Epoch | Step | Validation Loss | Exact Match |
|
47 |
|:-------------:|:-----:|:----:|:---------------:|:-----------:|
|
48 |
-
|
|
49 |
-
|
|
50 |
-
|
|
51 |
-
|
|
52 |
-
|
|
53 |
-
|
|
54 |
-
|
|
55 |
-
|
|
56 |
-
|
|
57 |
-
|
|
58 |
-
|
|
59 |
-
|
|
60 |
-
|
|
61 |
-
|
|
62 |
-
|
|
63 |
-
|
|
64 |
-
|
|
65 |
-
|
|
66 |
-
| 0.
|
67 |
-
| 0.
|
68 |
|
69 |
|
70 |
### Framework versions
|
|
|
13 |
|
14 |
This model is a fine-tuned version of [](https://huggingface.co/) on an unknown dataset.
|
15 |
It achieves the following results on the evaluation set:
|
16 |
+
- Loss: 0.5400
|
17 |
+
- Exact Match: 0.21
|
18 |
|
19 |
## Model description
|
20 |
|
|
|
34 |
|
35 |
The following hyperparameters were used during training:
|
36 |
- learning_rate: 0.001
|
37 |
+
- train_batch_size: 100
|
38 |
- eval_batch_size: 8
|
39 |
- seed: 42
|
40 |
+
- gradient_accumulation_steps: 4
|
41 |
+
- total_train_batch_size: 400
|
42 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
43 |
+
- lr_scheduler_type: inverse_sqrt
|
44 |
+
- lr_scheduler_warmup_steps: 4000
|
45 |
- num_epochs: 20
|
46 |
|
47 |
### Training results
|
48 |
|
49 |
| Training Loss | Epoch | Step | Validation Loss | Exact Match |
|
50 |
|:-------------:|:-----:|:----:|:---------------:|:-----------:|
|
51 |
+
| 5.8887 | 1.0 | 25 | 5.4437 | 0.0 |
|
52 |
+
| 5.136 | 2.0 | 50 | 4.6502 | 0.0 |
|
53 |
+
| 4.4735 | 3.0 | 75 | 4.0750 | 0.0 |
|
54 |
+
| 4.0514 | 4.0 | 100 | 3.6513 | 0.0 |
|
55 |
+
| 3.6137 | 5.0 | 125 | 3.2326 | 0.0 |
|
56 |
+
| 3.1753 | 6.0 | 150 | 2.8805 | 0.0 |
|
57 |
+
| 2.8265 | 7.0 | 175 | 2.6956 | 0.0 |
|
58 |
+
| 2.5627 | 8.0 | 200 | 2.4217 | 0.0 |
|
59 |
+
| 2.3479 | 9.0 | 225 | 2.1641 | 0.0 |
|
60 |
+
| 2.152 | 10.0 | 250 | 1.9763 | 0.0 |
|
61 |
+
| 1.9774 | 11.0 | 275 | 1.7821 | 0.02 |
|
62 |
+
| 1.8176 | 12.0 | 300 | 1.6510 | 0.02 |
|
63 |
+
| 1.6546 | 13.0 | 325 | 1.4170 | 0.04 |
|
64 |
+
| 1.5235 | 14.0 | 350 | 1.3487 | 0.04 |
|
65 |
+
| 1.3971 | 15.0 | 375 | 1.1213 | 0.13 |
|
66 |
+
| 1.2849 | 16.0 | 400 | 0.9549 | 0.13 |
|
67 |
+
| 1.1762 | 17.0 | 425 | 0.8649 | 0.19 |
|
68 |
+
| 1.0809 | 18.0 | 450 | 0.7560 | 0.19 |
|
69 |
+
| 0.9945 | 19.0 | 475 | 0.6806 | 0.2 |
|
70 |
+
| 0.9168 | 20.0 | 500 | 0.5400 | 0.21 |
|
71 |
|
72 |
|
73 |
### Framework versions
|
generation_config.json
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
"decoder_start_token_id": 259,
|
3 |
"eos_token_id": 1,
|
4 |
"max_new_tokens": 20,
|
|
|
5 |
"pad_token_id": 0,
|
6 |
"transformers_version": "4.35.2"
|
7 |
}
|
|
|
2 |
"decoder_start_token_id": 259,
|
3 |
"eos_token_id": 1,
|
4 |
"max_new_tokens": 20,
|
5 |
+
"num_beams": 5,
|
6 |
"pad_token_id": 0,
|
7 |
"transformers_version": "4.35.2"
|
8 |
}
|