Fairseq
Catalan
French
AudreyVM commited on
Commit
6a0c874
1 Parent(s): 0ebaa92

add model card

Browse files
Files changed (1) hide show
  1. README.md +155 -1
README.md CHANGED
@@ -1,3 +1,157 @@
1
  ---
2
- license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
  ---
4
+ ## Projecte Aina’s Catalan-French machine translation model
5
+
6
+ ## Table of Contents
7
+ - [Model Description](#model-description)
8
+ - [Intended Uses and Limitations](#intended-use)
9
+ - [How to Use](#how-to-use)
10
+ - [Training](#training)
11
+ - [Training data](#training-data)
12
+ - [Training procedure](#training-procedure)
13
+ - [Data Preparation](#data-preparation)
14
+ - [Tokenization](#tokenization)
15
+ - [Hyperparameters](#hyperparameters)
16
+ - [Evaluation](#evaluation)
17
+ - [Variable and Metrics](#variable-and-metrics)
18
+ - [Evaluation Results](#evaluation-results)
19
+ - [Additional Information](#additional-information)
20
+ - [Author](#author)
21
+ - [Contact Information](#contact-information)
22
+ - [Copyright](#copyright)
23
+ - [Licensing Information](#licensing-information)
24
+ - [Funding](#funding)
25
+ - [Disclaimer](#disclaimer)
26
+
27
+ ## Model description
28
+
29
+ This model was trained from scratch using the [Fairseq toolkit](https://fairseq.readthedocs.io/en/latest/) on a combination of Catalan-French datasets, up to 10 million sentences. The model is evaluated on the Flores (general) and NTREX (news) evaluation sets.
30
+
31
+ ## Intended uses and limitations
32
+
33
+ You can use this model for machine translation from Catalan to French.
34
+
35
+ ## How to use
36
+
37
+ ### Usage
38
+ Required libraries:
39
+
40
+ ```bash
41
+ pip install ctranslate2 pyonmttok
42
+ ```
43
+
44
+ Translate a sentence using python
45
+ ```python
46
+ import ctranslate2
47
+ import pyonmttok
48
+ from huggingface_hub import snapshot_download
49
+ model_dir = snapshot_download(repo_id="projecte-aina/mt-aina-ca-fr", revision="main")
50
+
51
+ tokenizer=pyonmttok.Tokenizer(mode="none", sp_model_path = model_dir + "/spm.model")
52
+ tokenized=tokenizer.tokenize("Benvingut al projecte Aina!!")
53
+
54
+ translator = ctranslate2.Translator(model_dir)
55
+ translated = translator.translate_batch([tokenized[0]])
56
+ print(tokenizer.detokenize(translated[0][0]['tokens']))
57
+ ```
58
+
59
+ ## Training
60
+
61
+ ### Training data
62
+
63
+ The model was trained on a combination of the following datasets:
64
+
65
+ | Dataset | Sentences | Sentences after Cleaning |
66
+ |-------------------|----------------|-------------------|
67
+ | CCMatrix |24.386.198 | 16.305.758 |
68
+ | Multi CCAligned | 1.954.475 | 1.442.584 |
69
+ | WikiMatrix | 490.871 | 437.665 |
70
+ | GNOME | 12.962 | 1.686 |
71
+ |KDE 4 | 163.143 | 111.750 |
72
+ | QED | 65.336 | 52.797 |
73
+ | TED 2020 | 51.833 | 44.101 |
74
+ | Open Subtitles | 392.159 | 225.786 |
75
+ | | **Total** | **27.532.050** | **18.634.844** |
76
+
77
+ ### Training procedure
78
+
79
+ ### Data preparation
80
+
81
+ All datasets are deduplicated and filtered to remove any sentence pairs with a cosine similarity of less than 0.75. This is done using sentence embeddings calculated using LaBSE. The filtered datasets are then concatenated to form the final corpus and before training the punctuation is normalized using a modified version of the join-single-file.py script from SoftCatalà
82
+
83
+
84
+ #### Tokenization
85
+
86
+ All data is tokenized using sentencepiece, with 50 thousand token sentencepiece model learned from the combination of all filtered training data. This model is included.
87
+
88
+ #### Hyperparameters
89
+
90
+ The model is based on the Transformer-XLarge proposed by [Subramanian et al.](https://aclanthology.org/2021.wmt-1.18.pdf)
91
+ The following hyperparamenters were set on the Fairseq toolkit:
92
+
93
+ | Hyperparameter | Value |
94
+ |------------------------------------|----------------------------------|
95
+ | Architecture | transformer_vaswani_wmt_en_de_bi |
96
+ | Embedding size | 1024 |
97
+ | Feedforward size | 4096 |
98
+ | Number of heads | 16 |
99
+ | Encoder layers | 24 |
100
+ | Decoder layers | 6 |
101
+ | Normalize before attention | True |
102
+ | --share-decoder-input-output-embed | True |
103
+ | --share-all-embeddings | True |
104
+ | Effective batch size | 96.000 |
105
+ | Optimizer | adam |
106
+ | Adam betas | (0.9, 0.980) |
107
+ | Clip norm | 0.0 |
108
+ | Learning rate | 1e-3 |
109
+ | Lr. schedurer | inverse sqrt |
110
+ | Warmup updates | 4000 |
111
+ | Dropout | 0.1 |
112
+ | Label smoothing | 0.1 |
113
+
114
+ The model was trained using shards of 10 million sentences, for a total of 11.000 updates. Weights were saved every 1000 updates and reported results are the average of the last 4 checkpoints.
115
+
116
+ ## Evaluation
117
+
118
+ ### Variable and metrics
119
+
120
+ We use the BLEU score for evaluation on test sets: [Flores-101](https://github.com/facebookresearch/flores), [NTREX](https://github.com/MicrosoftTranslator/NTREX)
121
+
122
+ ### Evaluation results
123
+
124
+ Below are the evaluation results on the machine translation from Catalan TO French compared to [Softcatalà](https://www.softcatala.org/) and [Google Translate](https://translate.google.es/?hl=es):
125
+
126
+ | Test set | SoftCatalà | Google Translate |mt-aina-ca-fr|
127
+ |----------------------|------------|------------------|---------------|
128
+ | Flores 101 dev | 34,6 | **43,4** | 38,2 |
129
+ | Flores 101 devtest | 35,3 | **43,4** | 38,2 |
130
+ | NTREX | 25,3 | **31,5** | 27,7 |
131
+ | Average | 35,0 | **39,4** | 34,7 |
132
+
133
+ ## Additional information
134
+
135
+ ### Author
136
+ Language Technologies Unit (LangTech) at the Barcelona Supercomputing Center
137
+
138
+ ### Contact information
139
+ For further information, send an email to <langtech@bsc.es>
140
+
141
+ ### Copyright
142
+ Copyright Language Technologies Unit at Barcelona Supercomputing Center (2023)
143
+
144
+ ### Licensing information
145
+ This work is licensed under a [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
146
+
147
+ ### Funding
148
+ This work was funded by the Departament de la Vicepresidència i de Polítiques Digitals i Territori de la Generalitat de Catalunya within the framework of Projecte AINA.
149
+
150
+ ### Disclaimer
151
+
152
+ <details>
153
+ <summary>Click to expand</summary>
154
+
155
+ The models published in this repository are intended for a generalist purpose and are available to third parties. These models may have bias and/or any other undesirable distortions. When third parties, deploy or provide systems and/or services to other parties using any of these models (or using systems based on these models) or become users of the models, they should note that it is their responsibility to mitigate the risks arising from their use and, in any event, to comply with applicable regulations, including regulations regarding the use of Artificial Intelligence. In no event shall the owner and creator of the models (BSC – Barcelona Supercomputing Center) be liable for any results arising from the use made by third parties of these models.
156
+ </details>
157
+