GMGowtham commited on
Commit
6e59022
1 Parent(s): 2f63217

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: google/flan-t5-base
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - samsum
8
+ metrics:
9
+ - rouge
10
+ model-index:
11
+ - name: flan-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: test
21
+ args: samsum
22
+ metrics:
23
+ - name: Rouge1
24
+ type: rouge
25
+ value: 47.3683
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
+ # flan-t5-base-samsum
32
+
33
+ This model is a fine-tuned version of [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) on the samsum dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 1.3716
36
+ - Rouge1: 47.3683
37
+ - Rouge2: 24.0343
38
+ - Rougel: 39.9874
39
+ - Rougelsum: 43.6453
40
+ - Gen Len: 17.3004
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: 5e-05
60
+ - train_batch_size: 8
61
+ - eval_batch_size: 8
62
+ - seed: 42
63
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
64
+ - lr_scheduler_type: linear
65
+ - num_epochs: 10
66
+
67
+ ### Training results
68
+
69
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
70
+ |:-------------:|:-----:|:-----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
71
+ | 1.4531 | 1.0 | 1842 | 1.3836 | 46.4391 | 23.0513 | 39.1448 | 42.8774 | 17.1868 |
72
+ | 1.3433 | 2.0 | 3684 | 1.3729 | 47.0465 | 23.4504 | 39.8361 | 43.3316 | 17.2613 |
73
+ | 1.2767 | 3.0 | 5526 | 1.3716 | 47.3683 | 24.0343 | 39.9874 | 43.6453 | 17.3004 |
74
+ | 1.2117 | 4.0 | 7368 | 1.3739 | 47.6321 | 24.1445 | 40.3378 | 43.9123 | 17.0989 |
75
+ | 1.1622 | 5.0 | 9210 | 1.3826 | 47.6786 | 23.9568 | 40.2743 | 43.7625 | 17.0879 |
76
+ | 1.1387 | 6.0 | 11052 | 1.3920 | 47.6434 | 24.0265 | 40.2093 | 43.9179 | 17.3712 |
77
+ | 1.1011 | 7.0 | 12894 | 1.3947 | 47.6658 | 24.0395 | 40.3477 | 43.8425 | 17.2186 |
78
+ | 1.0755 | 8.0 | 14736 | 1.4059 | 47.5613 | 24.0555 | 40.181 | 43.7645 | 17.1490 |
79
+ | 1.0514 | 9.0 | 16578 | 1.4053 | 47.9552 | 24.2395 | 40.3731 | 44.0694 | 17.3602 |
80
+ | 1.0311 | 10.0 | 18420 | 1.4114 | 48.0582 | 24.3022 | 40.4713 | 44.1136 | 17.3175 |
81
+
82
+
83
+ ### Framework versions
84
+
85
+ - Transformers 4.31.0
86
+ - Pytorch 2.0.1+cu118
87
+ - Datasets 2.14.3
88
+ - Tokenizers 0.13.3