luluw commited on
Commit
991d3e3
1 Parent(s): 876c9c6

End of training

Browse files
Files changed (2) hide show
  1. README.md +82 -0
  2. generation_config.json +6 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: t5-small
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - xsum
8
+ metrics:
9
+ - rouge
10
+ model-index:
11
+ - name: t5-small-finetuned-xsum
12
+ results:
13
+ - task:
14
+ name: Sequence-to-sequence Language Modeling
15
+ type: text2text-generation
16
+ dataset:
17
+ name: xsum
18
+ type: xsum
19
+ config: default
20
+ split: validation
21
+ args: default
22
+ metrics:
23
+ - name: Rouge1
24
+ type: rouge
25
+ value: 28.451
26
+ ---
27
+
28
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
29
+ should probably proofread and complete it, then remove this comment. -->
30
+
31
+ # t5-small-finetuned-xsum
32
+
33
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the xsum dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 2.4684
36
+ - Rouge1: 28.451
37
+ - Rouge2: 7.8513
38
+ - Rougel: 22.3844
39
+ - Rougelsum: 22.3826
40
+ - Gen Len: 18.8292
41
+
42
+ ## Model description
43
+
44
+ More information needed
45
+
46
+ ## Intended uses & limitations
47
+
48
+ More information needed
49
+
50
+ ## Training and evaluation data
51
+
52
+ More information needed
53
+
54
+ ## Training procedure
55
+
56
+ ### Training hyperparameters
57
+
58
+ The following hyperparameters were used during training:
59
+ - learning_rate: 2e-05
60
+ - train_batch_size: 100
61
+ - eval_batch_size: 100
62
+ - seed: 42
63
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
64
+ - lr_scheduler_type: linear
65
+ - num_epochs: 3
66
+ - mixed_precision_training: Native AMP
67
+
68
+ ### Training results
69
+
70
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
71
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|:------:|:-------:|:---------:|:-------:|
72
+ | 2.7635 | 1.0 | 2041 | 2.5150 | 27.6651 | 7.3702 | 21.7165 | 21.7178 | 18.8121 |
73
+ | 2.7114 | 2.0 | 4082 | 2.4780 | 28.3617 | 7.7832 | 22.3142 | 22.3121 | 18.8227 |
74
+ | 2.695 | 3.0 | 6123 | 2.4684 | 28.451 | 7.8513 | 22.3844 | 22.3826 | 18.8292 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.42.3
80
+ - Pytorch 2.1.0+cu118
81
+ - Datasets 2.20.0
82
+ - Tokenizers 0.19.1
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.42.3"
6
+ }