rossanez commited on
Commit
799dc17
1 Parent(s): 71d26ab

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - wmt14
7
+ metrics:
8
+ - bleu
9
+ model-index:
10
+ - name: t5-small-finetuned-de-en-batch8
11
+ results:
12
+ - task:
13
+ name: Sequence-to-sequence Language Modeling
14
+ type: text2text-generation
15
+ dataset:
16
+ name: wmt14
17
+ type: wmt14
18
+ args: de-en
19
+ metrics:
20
+ - name: Bleu
21
+ type: bleu
22
+ value: 10.039
23
+ ---
24
+
25
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
26
+ should probably proofread and complete it, then remove this comment. -->
27
+
28
+ # t5-small-finetuned-de-en-batch8
29
+
30
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the wmt14 dataset.
31
+ It achieves the following results on the evaluation set:
32
+ - Loss: 2.1282
33
+ - Bleu: 10.039
34
+ - Gen Len: 17.3839
35
+
36
+ ## Model description
37
+
38
+ More information needed
39
+
40
+ ## Intended uses & limitations
41
+
42
+ More information needed
43
+
44
+ ## Training and evaluation data
45
+
46
+ More information needed
47
+
48
+ ## Training procedure
49
+
50
+ ### Training hyperparameters
51
+
52
+ The following hyperparameters were used during training:
53
+ - learning_rate: 0.0002
54
+ - train_batch_size: 8
55
+ - eval_batch_size: 8
56
+ - seed: 42
57
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
58
+ - lr_scheduler_type: linear
59
+ - num_epochs: 5
60
+ - mixed_precision_training: Native AMP
61
+
62
+ ### Training results
63
+
64
+ | Training Loss | Epoch | Step | Validation Loss | Bleu | Gen Len |
65
+ |:-------------:|:-----:|:----:|:---------------:|:------:|:-------:|
66
+ | No log | 1.0 | 375 | 2.0912 | 9.9147 | 17.3084 |
67
+ | 1.5593 | 2.0 | 750 | 2.0858 | 9.9386 | 17.4299 |
68
+ | 1.4383 | 3.0 | 1125 | 2.1137 | 9.9804 | 17.34 |
69
+ | 1.3562 | 4.0 | 1500 | 2.1198 | 9.9685 | 17.367 |
70
+ | 1.3562 | 5.0 | 1875 | 2.1282 | 10.039 | 17.3839 |
71
+
72
+
73
+ ### Framework versions
74
+
75
+ - Transformers 4.12.5
76
+ - Pytorch 1.10.0+cu111
77
+ - Datasets 1.16.1
78
+ - Tokenizers 0.10.3