alaahussein commited on
Commit
0c44f6c
1 Parent(s): a4d865a

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - billsum
7
+ metrics:
8
+ - rouge
9
+ - bleu
10
+ model-index:
11
+ - name: T5-small_finetuned_billsum_subset_model_bs32_lr2e-05
12
+ results:
13
+ - task:
14
+ name: Sequence-to-sequence Language Modeling
15
+ type: text2text-generation
16
+ dataset:
17
+ name: billsum
18
+ type: billsum
19
+ config: default
20
+ split: ca_test
21
+ args: default
22
+ metrics:
23
+ - name: Rouge1
24
+ type: rouge
25
+ value: 0.1887
26
+ - name: Bleu
27
+ type: bleu
28
+ value: 0.0008
29
+ ---
30
+
31
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
32
+ should probably proofread and complete it, then remove this comment. -->
33
+
34
+ # T5-small_finetuned_billsum_subset_model_bs32_lr2e-05
35
+
36
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the billsum dataset.
37
+ It achieves the following results on the evaluation set:
38
+ - Loss: 1.9763
39
+ - Rouge1: 0.1887
40
+ - Rouge2: 0.0967
41
+ - Rougel: 0.1659
42
+ - Rougelsum: 0.1657
43
+ - Gen Len: 19.0
44
+ - Bleu: 0.0008
45
+
46
+ ## Model description
47
+
48
+ More information needed
49
+
50
+ ## Intended uses & limitations
51
+
52
+ More information needed
53
+
54
+ ## Training and evaluation data
55
+
56
+ More information needed
57
+
58
+ ## Training procedure
59
+
60
+ ### Training hyperparameters
61
+
62
+ The following hyperparameters were used during training:
63
+ - learning_rate: 2e-05
64
+ - train_batch_size: 32
65
+ - eval_batch_size: 32
66
+ - seed: 42
67
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
68
+ - lr_scheduler_type: linear
69
+ - num_epochs: 4
70
+ - mixed_precision_training: Native AMP
71
+
72
+ ### Training results
73
+
74
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len | Bleu |
75
+ |:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|:---------:|:-------:|:------:|
76
+ | No log | 1.0 | 31 | 1.9837 | 0.1873 | 0.0945 | 0.1635 | 0.1633 | 19.0 | 0.0007 |
77
+ | No log | 2.0 | 62 | 1.9812 | 0.1884 | 0.0955 | 0.1652 | 0.1648 | 19.0 | 0.0007 |
78
+ | No log | 3.0 | 93 | 1.9785 | 0.1866 | 0.0936 | 0.1636 | 0.1634 | 19.0 | 0.0007 |
79
+ | No log | 4.0 | 124 | 1.9763 | 0.1887 | 0.0967 | 0.1659 | 0.1657 | 19.0 | 0.0008 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.27.4
85
+ - Pytorch 2.0.0+cu118
86
+ - Datasets 2.11.0
87
+ - Tokenizers 0.13.3