Kallia commited on
Commit
1975aa0
·
verified ·
1 Parent(s): 33accbf

Training complete

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
+ - summarization
7
+ - generated_from_trainer
8
+ metrics:
9
+ - rouge
10
+ model-index:
11
+ - name: t5-small-finetuned-stock-news-3
12
+ results: []
13
+ ---
14
+
15
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
+ should probably proofread and complete it, then remove this comment. -->
17
+
18
+ # t5-small-finetuned-stock-news-3
19
+
20
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on an unknown dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 0.5388
23
+ - Rouge1: 46.5843
24
+ - Rouge2: 39.8053
25
+ - Rougel: 45.0579
26
+ - Rougelsum: 45.1153
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: 4e-05
46
+ - train_batch_size: 4
47
+ - eval_batch_size: 4
48
+ - seed: 42
49
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
50
+ - lr_scheduler_type: linear
51
+ - num_epochs: 6
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum |
56
+ |:-------------:|:-----:|:-----:|:---------------:|:-------:|:-------:|:-------:|:---------:|
57
+ | 0.6486 | 1.0 | 2061 | 0.5804 | 46.121 | 39.3055 | 44.5881 | 44.6641 |
58
+ | 0.5558 | 2.0 | 4122 | 0.5550 | 46.3546 | 39.6639 | 44.9562 | 44.9928 |
59
+ | 0.518 | 3.0 | 6183 | 0.5472 | 46.6276 | 39.8816 | 45.1918 | 45.251 |
60
+ | 0.4974 | 4.0 | 8244 | 0.5384 | 46.6196 | 39.7899 | 45.0584 | 45.1347 |
61
+ | 0.4794 | 5.0 | 10305 | 0.5385 | 46.6275 | 39.7555 | 45.0597 | 45.1392 |
62
+ | 0.4714 | 6.0 | 12366 | 0.5388 | 46.5843 | 39.8053 | 45.0579 | 45.1153 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.51.3
68
+ - Pytorch 2.6.0+cu124
69
+ - Datasets 3.5.1
70
+ - Tokenizers 0.21.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.51.3"
6
+ }