AudreyVM commited on
Commit
b1cf35e
1 Parent(s): 22ac22d

update model card

Browse files
Files changed (1) hide show
  1. README.md +146 -0
README.md CHANGED
@@ -1,3 +1,149 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ ## Projecte Aina’s Galician-Catalan 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 Galician-Catalan datasets totalling 10.017.995 sentence pairs. 4.267.995 sentence pairs were parallel data collected from the web while the remaining 5.750.000 sentence pairs were parallel synthetic data created using the GL-EU translator of [Proxecto Nós](https://huggingface.co/proxectonos/Nos_MT-OpenNMT-es-gl). The model was evaluated on the Flores, TaCon and NTREX evaluation datasets.
30
+
31
+ ## Intended uses and limitations
32
+
33
+ You can use this model for machine translation from Galician to Catalan.
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-it-ca", revision="main")
50
+ tokenizer=pyonmttok.Tokenizer(mode="none", sp_model_path = model_dir + "/spm.model")
51
+ tokenized=tokenizer.tokenize("Benvido ao proxecto Aina.")
52
+ translator = ctranslate2.Translator(model_dir)
53
+ translated = translator.translate_batch([tokenized[0]])
54
+ print(tokenizer.detokenize(translated[0][0]['tokens']))
55
+ ```
56
+
57
+ ## Training
58
+
59
+ ### Training data
60
+
61
+ The Galician-Catalan data collected from the web was a combination of the following datasets:
62
+
63
+ | Dataset | Sentences before cleaning |
64
+ |-------------------|----------------|
65
+ | CCMatrix v1 | 3.041.152 |
66
+ | XLENT | 371.377 |
67
+ | WikiMatrix | 286.446 |
68
+ | GNOME | 18|
69
+ | KDE4 | 147.182 |
70
+ | TED2020 v1 | 11.041 |
71
+ | OpenSubtitles | 16.379 |
72
+ |Covost 2 | 263.729 |
73
+ |Gene-Crawling | 38.320 |
74
+ |Memories Projectes Lliures | 794.631 |
75
+ | **Total** | **4.92.275** |
76
+
77
+ The datasets were concatentated before filtering to avoid intra-dataset duplicates and the final size was 4.267.995.
78
+ The 5.750.000 sentence pairs of synthetic parallel data were created from a random sampling of the [Projecte Aina ES-CA corpus](https://huggingface.co/projecte-aina/mt-aina-ca-es)
79
+
80
+ ### Training procedure
81
+
82
+ ### Data preparation
83
+
84
+ 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](https://huggingface.co/sentence-transformers/LaBSE). The filtered datasets are then concatenated to form a final corpus of 10.017.995 and before training the punctuation is normalized using a modified version of the join-single-file.py script from [SoftCatalà](https://github.com/Softcatala/nmt-models/blob/master/data-processing-tools/join-single-file.py)
85
+
86
+
87
+ #### Tokenization
88
+
89
+ All data is tokenized using sentencepiece, with a 50 thousand token sentencepiece model learned from the combination of all filtered training data. This model is included.
90
+
91
+ #### Hyperparameters
92
+
93
+ The model is based on the Transformer-XLarge proposed by [Subramanian et al.](https://aclanthology.org/2021.wmt-1.18.pdf)
94
+ The following hyperparameters were set on the Fairseq toolkit:
95
+
96
+ | Hyperparameter | Value |
97
+ |------------------------------------|----------------------------------|
98
+ | Architecture | transformer_vaswani_wmt_en_de_big |
99
+ | Embedding size | 1024 |
100
+ | Feedforward size | 4096 |
101
+ | Number of heads | 16 |
102
+ | Encoder layers | 24 |
103
+ | Decoder layers | 6 |
104
+ | Normalize before attention | True |
105
+ | --share-decoder-input-output-embed | True |
106
+ | --share-all-embeddings | True |
107
+ | Effective batch size | 48.000 |
108
+ | Optimizer | adam |
109
+ | Adam betas | (0.9, 0.980) |
110
+ | Clip norm | 0.0 |
111
+ | Learning rate | 5e-4 |
112
+ | Lr. schedurer | inverse sqrt |
113
+ | Warmup updates | 8000 |
114
+ | Dropout | 0.1 |
115
+ | Label smoothing | 0.1 |
116
+
117
+ The model was trained for 24.000 updates on the parallel data collected from the web.
118
+ This data was then concatenated with the synthetic parallel data and training continued for a total of 34.000 updates.
119
+ Weights were saved every 1000 updates and reported results are the average of the last 4 checkpoints.
120
+
121
+ ## Evaluation
122
+ ### Variable and metrics
123
+ We use the BLEU score for evaluation on test sets: [Flores-200](https://github.com/facebookresearch/flores/tree/main/flores200), [TaCon](https://elrc-share.eu/repository/browse/tacon-spanish-constitution-mt-test-set/84a96138b98611ec9c1a00155d02670628f3e6857b0f422abd82abc3795ec8c2/) and [NTREX](https://github.com/MicrosoftTranslator/NTREX)
124
+ ### Evaluation results
125
+ Below are the evaluation results on the machine translation from Galician to Catalan compared to [M2M100 1.2B](https://huggingface.co/facebook/m2m100_1.2B), [NLLB 200 3.3B](https://huggingface.co/facebook/nllb-200-3.3B) and [ NLLB-200's distilled 1.3B variant](https://huggingface.co/facebook/nllb-200-distilled-1.3B):
126
+ | Test set |M2M100 1.2B| NLLB 1.3B | NLLB 3.3 |mt-aina-eu-ca|
127
+ |----------------------|-------|-----------|------------------|---------------|
128
+ | Flores 200 devtest |32,6| 22,3 | **34,3** | 32,4 |
129
+ | TaCON |56,5|32,2 | 54,1 | **58,2** |
130
+ | NTREX |34,0|20,4 | **34,2** | 33,7 |
131
+ | Average |41,0| 25,0 | 40,9 | **41,4** |
132
+ ## Additional information
133
+ ### Author
134
+ Language Technologies Unit (LangTech) at the Barcelona Supercomputing Center (langtech@bsc.es)
135
+ ### Contact information
136
+ For further information, send an email to <aina@bsc.es>
137
+ ### Copyright
138
+ Copyright Language Technologies Unit at Barcelona Supercomputing Center (2023)
139
+ ### Licensing information
140
+ This work is licensed under a [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
141
+ ### Funding
142
+ 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.
143
+ ### Disclaimer
144
+ <details>
145
+ <summary>Click to expand</summary>
146
+ 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.
147
+ 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.
148
+ 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.
149
+ </details>