yangdechuan
commited on
Commit
•
aa07ba0
1
Parent(s):
b736271
Training complete
Browse files- README.md +71 -0
- generation_config.json +6 -0
- pytorch_model.bin +1 -1
README.md
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
base_model: google/mt5-small
|
4 |
+
tags:
|
5 |
+
- summarization
|
6 |
+
- generated_from_trainer
|
7 |
+
metrics:
|
8 |
+
- rouge
|
9 |
+
model-index:
|
10 |
+
- name: mt5-small-finetuned-amazon-en-es
|
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 |
+
# mt5-small-finetuned-amazon-en-es
|
18 |
+
|
19 |
+
This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on the None dataset.
|
20 |
+
It achieves the following results on the evaluation set:
|
21 |
+
- Loss: 3.0348
|
22 |
+
- Rouge1: 17.5116
|
23 |
+
- Rouge2: 8.5034
|
24 |
+
- Rougel: 17.2199
|
25 |
+
- Rougelsum: 17.0937
|
26 |
+
|
27 |
+
## Model description
|
28 |
+
|
29 |
+
More information needed
|
30 |
+
|
31 |
+
## Intended uses & limitations
|
32 |
+
|
33 |
+
More information needed
|
34 |
+
|
35 |
+
## Training and evaluation data
|
36 |
+
|
37 |
+
More information needed
|
38 |
+
|
39 |
+
## Training procedure
|
40 |
+
|
41 |
+
### Training hyperparameters
|
42 |
+
|
43 |
+
The following hyperparameters were used during training:
|
44 |
+
- learning_rate: 5.6e-05
|
45 |
+
- train_batch_size: 8
|
46 |
+
- eval_batch_size: 8
|
47 |
+
- seed: 42
|
48 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
49 |
+
- lr_scheduler_type: linear
|
50 |
+
- num_epochs: 8
|
51 |
+
|
52 |
+
### Training results
|
53 |
+
|
54 |
+
| Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum |
|
55 |
+
|:-------------:|:-----:|:----:|:---------------:|:-------:|:------:|:-------:|:---------:|
|
56 |
+
| 6.6706 | 1.0 | 1209 | 3.3114 | 13.1025 | 4.546 | 12.6485 | 12.5756 |
|
57 |
+
| 3.9103 | 2.0 | 2418 | 3.1923 | 16.1192 | 8.3043 | 15.7004 | 15.6132 |
|
58 |
+
| 3.5937 | 3.0 | 3627 | 3.0927 | 17.9684 | 9.2115 | 17.5115 | 17.4098 |
|
59 |
+
| 3.4088 | 4.0 | 4836 | 3.0605 | 17.8543 | 8.4785 | 17.2866 | 17.1586 |
|
60 |
+
| 3.3178 | 5.0 | 6045 | 3.0501 | 16.029 | 7.6078 | 15.5929 | 15.4296 |
|
61 |
+
| 3.2438 | 6.0 | 7254 | 3.0422 | 16.645 | 8.345 | 16.3489 | 16.1929 |
|
62 |
+
| 3.2005 | 7.0 | 8463 | 3.0404 | 16.6148 | 7.5599 | 16.2553 | 16.1232 |
|
63 |
+
| 3.1792 | 8.0 | 9672 | 3.0348 | 17.5116 | 8.5034 | 17.2199 | 17.0937 |
|
64 |
+
|
65 |
+
|
66 |
+
### Framework versions
|
67 |
+
|
68 |
+
- Transformers 4.33.0.dev0
|
69 |
+
- Pytorch 2.0.0+cu117
|
70 |
+
- Datasets 2.14.4
|
71 |
+
- Tokenizers 0.13.3
|
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.33.0.dev0"
|
6 |
+
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1200772613
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1520ae6a7027e1318118be415eb8475abb6096f24a34ff093d86aebf45ffe133
|
3 |
size 1200772613
|