Training complete
Browse files- README.md +70 -0
- 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-xsum-custom-2
|
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-xsum-custom-2
|
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: 2.3786
|
23 |
+
- Rouge1: 31.4362
|
24 |
+
- Rouge2: 9.6838
|
25 |
+
- Rougel: 25.2999
|
26 |
+
- Rougelsum: 25.2866
|
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 |
+
| 2.8203 | 1.0 | 5014 | 2.4866 | 29.4445 | 8.3337 | 23.5606 | 23.5476 |
|
58 |
+
| 2.6588 | 2.0 | 10028 | 2.4326 | 30.325 | 8.9839 | 24.2942 | 24.2757 |
|
59 |
+
| 2.5898 | 3.0 | 15042 | 2.4066 | 30.6845 | 9.2984 | 24.7842 | 24.7798 |
|
60 |
+
| 2.5414 | 4.0 | 20056 | 2.3909 | 31.2002 | 9.4684 | 25.0031 | 24.996 |
|
61 |
+
| 2.5094 | 5.0 | 25070 | 2.3796 | 31.3796 | 9.6549 | 25.2979 | 25.2858 |
|
62 |
+
| 2.4899 | 6.0 | 30084 | 2.3786 | 31.4362 | 9.6838 | 25.2999 | 25.2866 |
|
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 |
+
}
|