antonkurylo commited on
Commit
e329cf8
1 Parent(s): 34be9d7

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - summarization
5
+ - generated_from_trainer
6
+ datasets:
7
+ - samsum
8
+ metrics:
9
+ - rouge
10
+ model-index:
11
+ - name: t5-base-samsum
12
+ results:
13
+ - task:
14
+ name: Sequence-to-sequence Language Modeling
15
+ type: text2text-generation
16
+ dataset:
17
+ name: samsum
18
+ type: samsum
19
+ config: samsum
20
+ split: validation
21
+ args: samsum
22
+ metrics:
23
+ - name: Rouge1
24
+ type: rouge
25
+ value: 48.9131
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-base-samsum
32
+
33
+ This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the samsum dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 0.6172
36
+ - Rouge1: 48.9131
37
+ - Rouge2: 25.4942
38
+ - Rougel: 41.2363
39
+ - Rougelsum: 45.3434
40
+
41
+ ## Model description
42
+
43
+ More information needed
44
+
45
+ ## Intended uses & limitations
46
+
47
+ More information needed
48
+
49
+ ## Training and evaluation data
50
+
51
+ More information needed
52
+
53
+ ## Training procedure
54
+
55
+ ### Training hyperparameters
56
+
57
+ The following hyperparameters were used during training:
58
+ - learning_rate: 5e-05
59
+ - train_batch_size: 4
60
+ - eval_batch_size: 4
61
+ - seed: 42
62
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
63
+ - lr_scheduler_type: linear
64
+ - num_epochs: 5
65
+
66
+ ### Training results
67
+
68
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum |
69
+ |:-------------:|:-----:|:-----:|:---------------:|:-------:|:-------:|:-------:|:---------:|
70
+ | 0.7606 | 1.0 | 3683 | 0.6254 | 46.9778 | 23.8245 | 39.8294 | 43.4639 |
71
+ | 0.6273 | 2.0 | 7366 | 0.6119 | 48.2515 | 24.7534 | 40.4415 | 44.5567 |
72
+ | 0.5769 | 3.0 | 11049 | 0.6116 | 48.228 | 24.7865 | 40.7537 | 44.4026 |
73
+ | 0.5412 | 4.0 | 14732 | 0.6145 | 48.8563 | 25.356 | 41.1913 | 45.186 |
74
+ | 0.5199 | 5.0 | 18415 | 0.6172 | 48.9131 | 25.4942 | 41.2363 | 45.3434 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.28.0
80
+ - Pytorch 2.0.1+cu118
81
+ - Datasets 2.12.0
82
+ - Tokenizers 0.13.3