Kevincp560 commited on
Commit
a6bcdfa
1 Parent(s): 295046c

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - pub_med_summarization_dataset
6
+ metrics:
7
+ - rouge
8
+ model-index:
9
+ - name: pegasus-arxiv-finetuned-pubmed
10
+ results:
11
+ - task:
12
+ name: Sequence-to-sequence Language Modeling
13
+ type: text2text-generation
14
+ dataset:
15
+ name: pub_med_summarization_dataset
16
+ type: pub_med_summarization_dataset
17
+ args: document
18
+ metrics:
19
+ - name: Rouge1
20
+ type: rouge
21
+ value: 44.286
22
+ ---
23
+
24
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
25
+ should probably proofread and complete it, then remove this comment. -->
26
+
27
+ # pegasus-arxiv-finetuned-pubmed
28
+
29
+ This model is a fine-tuned version of [google/pegasus-arxiv](https://huggingface.co/google/pegasus-arxiv) on the pub_med_summarization_dataset dataset.
30
+ It achieves the following results on the evaluation set:
31
+ - Loss: 1.8118
32
+ - Rouge1: 44.286
33
+ - Rouge2: 19.0477
34
+ - Rougel: 27.1122
35
+ - Rougelsum: 40.2609
36
+ - Gen Len: 230.586
37
+
38
+ ## Model description
39
+
40
+ More information needed
41
+
42
+ ## Intended uses & limitations
43
+
44
+ More information needed
45
+
46
+ ## Training and evaluation data
47
+
48
+ More information needed
49
+
50
+ ## Training procedure
51
+
52
+ ### Training hyperparameters
53
+
54
+ The following hyperparameters were used during training:
55
+ - learning_rate: 2e-05
56
+ - train_batch_size: 2
57
+ - eval_batch_size: 2
58
+ - seed: 42
59
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
60
+ - lr_scheduler_type: linear
61
+ - num_epochs: 5
62
+
63
+ ### Training results
64
+
65
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
66
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
67
+ | 2.65 | 1.0 | 1000 | 1.9848 | 40.6984 | 16.387 | 25.0097 | 36.4831 | 215.294 |
68
+ | 2.1317 | 2.0 | 2000 | 1.8524 | 43.6431 | 18.6794 | 26.7571 | 39.6642 | 224.646 |
69
+ | 2.0591 | 3.0 | 3000 | 1.8254 | 43.6707 | 18.5176 | 26.6015 | 39.6325 | 225.894 |
70
+ | 2.0109 | 4.0 | 4000 | 1.8138 | 44.1244 | 18.8866 | 26.8313 | 40.0913 | 229.656 |
71
+ | 1.9894 | 5.0 | 5000 | 1.8118 | 44.286 | 19.0477 | 27.1122 | 40.2609 | 230.586 |
72
+
73
+
74
+ ### Framework versions
75
+
76
+ - Transformers 4.17.0
77
+ - Pytorch 1.9.1
78
+ - Datasets 1.18.4
79
+ - Tokenizers 0.11.6