Transformers
Safetensors
Afrikaans
English
m2m_100
text2text-generation
Generated from Trainer
cobrayyxx commited on
Commit
3dc4fe6
·
verified ·
1 Parent(s): e0246f9

Finish training model using original + Flores200 +filtered augmented data scored (without <bt> tag)

Browse files
Files changed (2) hide show
  1. README.md +66 -0
  2. generation_config.json +8 -0
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: cc-by-nc-4.0
4
+ base_model: facebook/nllb-200-3.3B
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - bleu
9
+ model-index:
10
+ - name: nllb-200-3.3B-bem2en-flores200-bt
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
+ # nllb-200-3.3B-bem2en-flores200-bt
18
+
19
+ This model is a fine-tuned version of [facebook/nllb-200-3.3B](https://huggingface.co/facebook/nllb-200-3.3B) on the None dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.2028
22
+ - Bleu: 27.8
23
+ - Chrf: 51.39
24
+
25
+ ## Model description
26
+
27
+ More information needed
28
+
29
+ ## Intended uses & limitations
30
+
31
+ More information needed
32
+
33
+ ## Training and evaluation data
34
+
35
+ More information needed
36
+
37
+ ## Training procedure
38
+
39
+ ### Training hyperparameters
40
+
41
+ The following hyperparameters were used during training:
42
+ - learning_rate: 0.0001
43
+ - train_batch_size: 8
44
+ - eval_batch_size: 8
45
+ - seed: 42
46
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
47
+ - lr_scheduler_type: linear
48
+ - lr_scheduler_warmup_ratio: 0.03
49
+ - num_epochs: 3
50
+ - mixed_precision_training: Native AMP
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss | Bleu | Chrf |
55
+ |:-------------:|:-----:|:-----:|:---------------:|:-----:|:-----:|
56
+ | 0.1535 | 1.0 | 13236 | 0.1746 | 26.88 | 51.02 |
57
+ | 0.1004 | 2.0 | 26472 | 0.1694 | 28.1 | 51.65 |
58
+ | 0.0504 | 3.0 | 39708 | 0.2028 | 27.8 | 51.39 |
59
+
60
+
61
+ ### Framework versions
62
+
63
+ - Transformers 4.51.3
64
+ - Pytorch 2.2.0+cu121
65
+ - Datasets 3.5.0
66
+ - Tokenizers 0.21.1
generation_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 0,
3
+ "decoder_start_token_id": 2,
4
+ "eos_token_id": 2,
5
+ "max_length": 200,
6
+ "pad_token_id": 1,
7
+ "transformers_version": "4.51.3"
8
+ }