shaiman12 commited on
Commit
69a37cd
1 Parent(s): b710e84

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
+ - generated_from_trainer
5
+ datasets:
6
+ - samsum
7
+ metrics:
8
+ - rouge
9
+ model-index:
10
+ - name: flan-t5-base-samsum
11
+ results:
12
+ - task:
13
+ name: Sequence-to-sequence Language Modeling
14
+ type: text2text-generation
15
+ dataset:
16
+ name: samsum
17
+ type: samsum
18
+ config: samsum
19
+ split: test
20
+ args: samsum
21
+ metrics:
22
+ - name: Rouge1
23
+ type: rouge
24
+ value: 47.5929
25
+ ---
26
+
27
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
28
+ should probably proofread and complete it, then remove this comment. -->
29
+
30
+ # flan-t5-base-samsum
31
+
32
+ This model is a fine-tuned version of [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) on the samsum dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 1.3776
35
+ - Rouge1: 47.5929
36
+ - Rouge2: 23.8272
37
+ - Rougel: 40.1493
38
+ - Rougelsum: 43.7798
39
+ - Gen Len: 17.2503
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: 8
60
+ - eval_batch_size: 8
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 | Gen Len |
69
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
70
+ | 1.4416 | 1.0 | 1842 | 1.3837 | 46.6013 | 23.125 | 39.4894 | 42.9943 | 17.0684 |
71
+ | 1.3581 | 2.0 | 3684 | 1.3730 | 47.3142 | 23.5981 | 39.5786 | 43.447 | 17.3675 |
72
+ | 1.2781 | 3.0 | 5526 | 1.3739 | 47.5321 | 23.8035 | 40.0555 | 43.7595 | 17.2271 |
73
+ | 1.2368 | 4.0 | 7368 | 1.3767 | 47.0944 | 23.2414 | 39.6673 | 43.2155 | 17.2405 |
74
+ | 1.1953 | 5.0 | 9210 | 1.3776 | 47.5929 | 23.8272 | 40.1493 | 43.7798 | 17.2503 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.26.1
80
+ - Pytorch 1.12.1
81
+ - Datasets 2.9.0
82
+ - Tokenizers 0.13.2