Koltunov-Matthew commited on
Commit
c0c174d
·
1 Parent(s): 33e9a9f

End of training

Browse files
Files changed (2) hide show
  1. README.md +67 -0
  2. generation_config.json +6 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: t5-small
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - rouge
8
+ model-index:
9
+ - name: my_model
10
+ results: []
11
+ ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # my_model
17
+
18
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the None dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 2.0550
21
+ - Rouge1: 0.4076
22
+ - Rouge2: 0.2169
23
+ - Rougel: 0.3655
24
+ - Rougelsum: 0.3654
25
+ - Gen Len: 14.4845
26
+
27
+ ## Model description
28
+
29
+ More information needed
30
+
31
+ ## Intended uses & limitations
32
+
33
+ More information needed
34
+
35
+ ## Training and evaluation data
36
+
37
+ More information needed
38
+
39
+ ## Training procedure
40
+
41
+ ### Training hyperparameters
42
+
43
+ The following hyperparameters were used during training:
44
+ - learning_rate: 2e-05
45
+ - train_batch_size: 16
46
+ - eval_batch_size: 16
47
+ - seed: 42
48
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
49
+ - lr_scheduler_type: linear
50
+ - num_epochs: 4
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
55
+ |:-------------:|:-----:|:-----:|:---------------:|:------:|:------:|:------:|:---------:|:-------:|
56
+ | 2.3027 | 1.0 | 6750 | 2.1348 | 0.3964 | 0.2084 | 0.3554 | 0.3552 | 14.5291 |
57
+ | 2.2589 | 2.0 | 13500 | 2.0818 | 0.4021 | 0.2127 | 0.3603 | 0.3602 | 14.6178 |
58
+ | 2.227 | 3.0 | 20250 | 2.0605 | 0.4067 | 0.2167 | 0.365 | 0.3649 | 14.4537 |
59
+ | 2.2137 | 4.0 | 27000 | 2.0550 | 0.4076 | 0.2169 | 0.3655 | 0.3654 | 14.4845 |
60
+
61
+
62
+ ### Framework versions
63
+
64
+ - Transformers 4.32.1
65
+ - Pytorch 2.0.0
66
+ - Datasets 2.11.0
67
+ - Tokenizers 0.13.3
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "decoder_start_token_id": 0,
3
+ "eos_token_id": 1,
4
+ "pad_token_id": 0,
5
+ "transformers_version": "4.32.1"
6
+ }