kinleyrabgay commited on
Commit
0fc26a1
·
verified ·
1 Parent(s): 07f3c11

Model save

Browse files
Files changed (2) hide show
  1. README.md +68 -3
  2. generation_config.json +8 -0
README.md CHANGED
@@ -1,3 +1,68 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: cc-by-nc-4.0
4
+ base_model: facebook/nllb-200-distilled-600M
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - bleu
9
+ model-index:
10
+ - name: nllb-600m-dz-en
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-600m-dz-en
18
+
19
+ This model is a fine-tuned version of [facebook/nllb-200-distilled-600M](https://huggingface.co/facebook/nllb-200-distilled-600M) on an unknown dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.1018
22
+ - Bleu: 63.1240
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 3e-05
42
+ - train_batch_size: 4
43
+ - eval_batch_size: 4
44
+ - seed: 42
45
+ - gradient_accumulation_steps: 2
46
+ - total_train_batch_size: 8
47
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
48
+ - lr_scheduler_type: linear
49
+ - num_epochs: 5
50
+ - mixed_precision_training: Native AMP
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss | Bleu |
55
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|
56
+ | No log | 1.0 | 250 | 3.2227 | 58.0755 |
57
+ | 4.0188 | 2.0 | 500 | 0.3604 | 59.8527 |
58
+ | 4.0188 | 3.0 | 750 | 0.1086 | 62.2629 |
59
+ | 0.1201 | 4.0 | 1000 | 0.1018 | 63.0620 |
60
+ | 0.1201 | 5.0 | 1250 | 0.1018 | 63.1240 |
61
+
62
+
63
+ ### Framework versions
64
+
65
+ - Transformers 4.52.4
66
+ - Pytorch 2.6.0+cu124
67
+ - Datasets 3.6.0
68
+ - 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.52.4"
8
+ }