juhehli commited on
Commit
eeacc75
1 Parent(s): 78964a8

Model save

Browse files
Files changed (2) hide show
  1. README.md +70 -0
  2. generation_config.json +6 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: t5-small
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - rouge
9
+ model-index:
10
+ - name: t5-small-finetuned-question-answer-template
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # t5-small-finetuned-question-answer-template
18
+
19
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on an unknown dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 1.0208
22
+ - Rouge1: 49.8326
23
+ - Rouge2: 35.7019
24
+ - Rougel: 44.4145
25
+ - Rougelsum: 45.2499
26
+ - Gen Len: 14.1923
27
+
28
+ ## Model description
29
+
30
+ More information needed
31
+
32
+ ## Intended uses & limitations
33
+
34
+ More information needed
35
+
36
+ ## Training and evaluation data
37
+
38
+ More information needed
39
+
40
+ ## Training procedure
41
+
42
+ ### Training hyperparameters
43
+
44
+ The following hyperparameters were used during training:
45
+ - learning_rate: 2e-05
46
+ - train_batch_size: 16
47
+ - eval_batch_size: 16
48
+ - seed: 42
49
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
50
+ - lr_scheduler_type: linear
51
+ - num_epochs: 5
52
+ - mixed_precision_training: Native AMP
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
57
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
58
+ | No log | 1.0 | 15 | 1.5963 | 58.8562 | 38.9584 | 48.2008 | 48.5713 | 12.7308 |
59
+ | No log | 2.0 | 30 | 1.3353 | 55.6401 | 37.5317 | 46.5716 | 47.3352 | 12.8846 |
60
+ | No log | 3.0 | 45 | 1.1562 | 46.9796 | 32.0954 | 40.5538 | 41.5263 | 14.5 |
61
+ | No log | 4.0 | 60 | 1.0563 | 49.8326 | 35.7019 | 44.4145 | 45.2499 | 14.1923 |
62
+ | No log | 5.0 | 75 | 1.0208 | 49.8326 | 35.7019 | 44.4145 | 45.2499 | 14.1923 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.45.2
68
+ - Pytorch 2.4.1+cpu
69
+ - Datasets 3.0.1
70
+ - Tokenizers 0.20.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.45.2"
6
+ }