jramompichel commited on
Commit
f72749f
1 Parent(s): abb6423

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md CHANGED
@@ -1,3 +1,61 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ ---
5
+ license: mit
6
+ ---
7
+
8
+ **Descrición do Modelo**
9
+
10
+ Modelo feito con OpenNMT para o par español-galego utilizando unha arquitectura transformer.
11
+
12
+ **Como utilizar**
13
+
14
+ + Abrir terminal bash
15
+ + Instalar [Python 3.9](https://www.python.org/downloads/release/python-390/)
16
+ + Instalar [Open NMT toolkit v.2.2](https://github.com/OpenNMT/OpenNMT-py)
17
+ + Traducir un input_text utilizando o modelo NOS-MT-en-gl co seguinte comando:
18
+
19
+ ```bash
20
+ onmt_translate -src input_text -model NOS-MT-es-gl -output ./output_file.txt -replace_unk -phrase_table phrase_table-es-gl.txt -gpu 0
21
+ ```
22
+ + O resultado da tradución estará no PATH indicado no flag -output.
23
+
24
+ **Adestramento**
25
+
26
+ Datos utilizados para o adestramento
27
+
28
+ Auténticos e Sintéticos (Transliteração)[Colocar Paper]
29
+
30
+ **Procedemento de adestramento**
31
+
32
+ Tokenization
33
+
34
+ BPE
35
+
36
+ **Hiperparámetros**
37
+
38
+ Colocar o yaml para cada um dos pares
39
+
40
+ **Avaliación**
41
+
42
+
43
+
44
+ **Información adicional**
45
+
46
+ Licensing information
47
+
48
+ Apache License, Version 2.0
49
+
50
+ **Financiamento**
51
+
52
+ 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.
53
+
54
+ Citation Information
55
+
56
+ @article{garriga2022catalan,
57
+ title={A Catalan-German machine translation system based on the M2M-100 multilingual model},
58
+ author={Garriga Riba, Pol},
59
+ year={2022},
60
+ url={https://repositori.upf.edu/bitstream/handle/10230/54301/GarrigaRiba_2022.pdf?sequence=1&isAllowed=y}
61
+ }