vasumathin298 commited on
Commit
6172ea6
1 Parent(s): 913bb68

End of training

Browse files
Files changed (2) hide show
  1. README.md +83 -0
  2. generation_config.json +6 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: t5-small
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - samsum
9
+ metrics:
10
+ - rouge
11
+ model-index:
12
+ - name: t5-small-finetuned-samsum
13
+ results:
14
+ - task:
15
+ name: Sequence-to-sequence Language Modeling
16
+ type: text2text-generation
17
+ dataset:
18
+ name: samsum
19
+ type: samsum
20
+ config: samsum
21
+ split: validation
22
+ args: samsum
23
+ metrics:
24
+ - name: Rouge1
25
+ type: rouge
26
+ value: 38.0664
27
+ ---
28
+
29
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
30
+ should probably proofread and complete it, then remove this comment. -->
31
+
32
+ # t5-small-finetuned-samsum
33
+
34
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the samsum dataset.
35
+ It achieves the following results on the evaluation set:
36
+ - Loss: 1.8225
37
+ - Rouge1: 38.0664
38
+ - Rouge2: 16.3092
39
+ - Rougel: 31.9662
40
+ - Rougelsum: 35.0264
41
+ - Gen Len: 14.4976
42
+
43
+ ## Model description
44
+
45
+ More information needed
46
+
47
+ ## Intended uses & limitations
48
+
49
+ More information needed
50
+
51
+ ## Training and evaluation data
52
+
53
+ More information needed
54
+
55
+ ## Training procedure
56
+
57
+ ### Training hyperparameters
58
+
59
+ The following hyperparameters were used during training:
60
+ - learning_rate: 2e-05
61
+ - train_batch_size: 1
62
+ - eval_batch_size: 1
63
+ - seed: 42
64
+ - gradient_accumulation_steps: 16
65
+ - total_train_batch_size: 16
66
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
67
+ - lr_scheduler_type: linear
68
+ - num_epochs: 1
69
+ - mixed_precision_training: Native AMP
70
+
71
+ ### Training results
72
+
73
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
74
+ |:-------------:|:------:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
75
+ | 2.0656 | 0.9992 | 920 | 1.8225 | 38.0664 | 16.3092 | 31.9662 | 35.0264 | 14.4976 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 4.44.2
81
+ - Pytorch 2.4.1+cu121
82
+ - Datasets 3.0.1
83
+ - Tokenizers 0.19.1
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "decoder_start_token_id": 0,
3
+ "eos_token_id": 1,
4
+ "pad_token_id": 0,
5
+ "transformers_version": "4.44.2"
6
+ }