mridul3301 commited on
Commit
912a9c9
1 Parent(s): 53b2962

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -1
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - arxiv_summarization_dataset
7
+ metrics:
8
+ - rouge
9
+ model-index:
10
+ - name: distilbart-cnn-12-6-finetuned-arxiv-summarization-20k-5epochs
11
+ results:
12
+ - task:
13
+ name: Sequence-to-sequence Language Modeling
14
+ type: text2text-generation
15
+ dataset:
16
+ name: arxiv_summarization_dataset
17
+ type: arxiv_summarization_dataset
18
+ config: section
19
+ split: test[:2000]
20
+ args: section
21
+ metrics:
22
+ - name: Rouge1
23
+ type: rouge
24
+ value: 43.6107
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
+ # distilbart-cnn-12-6-finetuned-arxiv-summarization-20k-5epochs
31
+
32
+ This model is a fine-tuned version of [sshleifer/distilbart-cnn-12-6](https://huggingface.co/sshleifer/distilbart-cnn-12-6) on the arxiv_summarization_dataset dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 2.3793
35
+ - Rouge1: 43.6107
36
+ - Rouge2: 15.4482
37
+ - Rougel: 25.4843
38
+ - Rougelsum: 38.4962
39
+ - Gen Len: 122.2845
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: 2e-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
+ | 2.6031 | 1.0 | 2500 | 2.4896 | 42.8688 | 15.0682 | 25.1782 | 37.8758 | 121.6685 |
71
+ | 2.3931 | 2.0 | 5000 | 2.4135 | 43.7802 | 15.6074 | 25.7201 | 38.6496 | 123.614 |
72
+ | 2.2454 | 3.0 | 7500 | 2.3819 | 44.1347 | 15.8906 | 25.8923 | 38.961 | 120.8765 |
73
+ | 2.1393 | 4.0 | 10000 | 2.3780 | 43.6521 | 15.4051 | 25.5124 | 38.3483 | 122.396 |
74
+ | 2.0688 | 5.0 | 12500 | 2.3793 | 43.6107 | 15.4482 | 25.4843 | 38.4962 | 122.2845 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.30.2
80
+ - Pytorch 2.0.0
81
+ - Datasets 2.1.0
82
+ - Tokenizers 0.13.3