tiedeman commited on
Commit
0af6a39
1 Parent(s): db256da

Initial commit

Browse files
.gitattributes CHANGED
@@ -29,3 +29,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
  *.zip filter=lfs diff=lfs merge=lfs -text
30
  *.zst filter=lfs diff=lfs merge=lfs -text
31
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
29
  *.zip filter=lfs diff=lfs merge=lfs -text
30
  *.zst filter=lfs diff=lfs merge=lfs -text
31
  *tfevents* filter=lfs diff=lfs merge=lfs -text
32
+ *.spm filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - ko
5
+
6
+ tags:
7
+ - translation
8
+ - opus-mt-tc
9
+
10
+ license: cc-by-4.0
11
+ model-index:
12
+ - name: opus-mt-tc-big-ko-en
13
+ results:
14
+ - task:
15
+ name: Translation kor-eng
16
+ type: translation
17
+ args: kor-eng
18
+ dataset:
19
+ name: flores101-devtest
20
+ type: flores_101
21
+ args: kor eng devtest
22
+ metrics:
23
+ - name: BLEU
24
+ type: bleu
25
+ value: 27.7
26
+ - name: chr-F
27
+ type: chrf
28
+ value: 0.56615
29
+ - task:
30
+ name: Translation kor-eng
31
+ type: translation
32
+ args: kor-eng
33
+ dataset:
34
+ name: tatoeba-test-v2021-08-07
35
+ type: tatoeba_mt
36
+ args: kor-eng
37
+ metrics:
38
+ - name: BLEU
39
+ type: bleu
40
+ value: 41.3
41
+ - name: chr-F
42
+ type: chrf
43
+ value: 0.58829
44
+ ---
45
+ # opus-mt-tc-big-ko-en
46
+
47
+ ## Table of Contents
48
+ - [Model Details](#model-details)
49
+ - [Uses](#uses)
50
+ - [Risks, Limitations and Biases](#risks-limitations-and-biases)
51
+ - [How to Get Started With the Model](#how-to-get-started-with-the-model)
52
+ - [Training](#training)
53
+ - [Evaluation](#evaluation)
54
+ - [Citation Information](#citation-information)
55
+ - [Acknowledgements](#acknowledgements)
56
+
57
+ ## Model Details
58
+
59
+ Neural machine translation model for translating from Korean (ko) to English (en).
60
+
61
+ This model is part of the [OPUS-MT project](https://github.com/Helsinki-NLP/Opus-MT), an effort to make neural machine translation models widely available and accessible for many languages in the world. All models are originally trained using the amazing framework of [Marian NMT](https://marian-nmt.github.io/), an efficient NMT implementation written in pure C++. The models have been converted to pyTorch using the transformers library by huggingface. Training data is taken from [OPUS](https://opus.nlpl.eu/) and training pipelines use the procedures of [OPUS-MT-train](https://github.com/Helsinki-NLP/Opus-MT-train).
62
+ **Model Description:**
63
+ - **Developed by:** Language Technology Research Group at the University of Helsinki
64
+ - **Model Type:** Translation (transformer-big)
65
+ - **Release**: 2022-07-28
66
+ - **License:** CC-BY-4.0
67
+ - **Language(s):**
68
+ - Source Language(s): kor
69
+ - Target Language(s): eng
70
+ - **Original Model**: [opusTCv20210807-sepvoc_transformer-big_2022-07-28.zip](https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opusTCv20210807-sepvoc_transformer-big_2022-07-28.zip)
71
+ - **Resources for more information:**
72
+ - [OPUS-MT-train GitHub Repo](https://github.com/Helsinki-NLP/OPUS-MT-train)
73
+ - More information about released models for this language pair: [OPUS-MT kor-eng README](https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/kor-eng/README.md)
74
+ - [More information about MarianNMT models in the transformers library](https://huggingface.co/docs/transformers/model_doc/marian)
75
+ - [Tatoeba Translation Challenge](https://github.com/Helsinki-NLP/Tatoeba-Challenge/
76
+
77
+ ## Uses
78
+
79
+ This model can be used for translation and text-to-text generation.
80
+
81
+ ## Risks, Limitations and Biases
82
+
83
+ **CONTENT WARNING: Readers should be aware that the model is trained on various public data sets that may contain content that is disturbing, offensive, and can propagate historical and current stereotypes.**
84
+
85
+ Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al. (2021)](https://aclanthology.org/2021.acl-long.330.pdf) and [Bender et al. (2021)](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)).
86
+
87
+ ## How to Get Started With the Model
88
+
89
+ A short example code:
90
+
91
+ ```python
92
+ from transformers import MarianMTModel, MarianTokenizer
93
+
94
+ src_text = [
95
+ "2, 4, 6 등은 짝수이다.",
96
+ "네."
97
+ ]
98
+
99
+ model_name = "pytorch-models/opus-mt-tc-big-ko-en"
100
+ tokenizer = MarianTokenizer.from_pretrained(model_name)
101
+ model = MarianMTModel.from_pretrained(model_name)
102
+ translated = model.generate(**tokenizer(src_text, return_tensors="pt", padding=True))
103
+
104
+ for t in translated:
105
+ print( tokenizer.decode(t, skip_special_tokens=True) )
106
+
107
+ # expected output:
108
+ # 2, 4, and 6 are even.
109
+ # Yeah.
110
+ ```
111
+
112
+ You can also use OPUS-MT models with the transformers pipelines, for example:
113
+
114
+ ```python
115
+ from transformers import pipeline
116
+ pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-ko-en")
117
+ print(pipe("2, 4, 6 등은 짝수이다."))
118
+
119
+ # expected output: 2, 4, and 6 are even.
120
+ ```
121
+
122
+ ## Training
123
+
124
+ - **Data**: opusTCv20210807 ([source](https://github.com/Helsinki-NLP/Tatoeba-Challenge))
125
+ - **Pre-processing**: SentencePiece (spm32k,spm32k)
126
+ - **Model Type:** transformer-big
127
+ - **Original MarianNMT Model**: [opusTCv20210807-sepvoc_transformer-big_2022-07-28.zip](https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opusTCv20210807-sepvoc_transformer-big_2022-07-28.zip)
128
+ - **Training Scripts**: [GitHub Repo](https://github.com/Helsinki-NLP/OPUS-MT-train)
129
+
130
+ ## Evaluation
131
+
132
+ * test set translations: [opusTCv20210807-sepvoc_transformer-big_2022-07-28.test.txt](https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opusTCv20210807-sepvoc_transformer-big_2022-07-28.test.txt)
133
+ * test set scores: [opusTCv20210807-sepvoc_transformer-big_2022-07-28.eval.txt](https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opusTCv20210807-sepvoc_transformer-big_2022-07-28.eval.txt)
134
+ * benchmark results: [benchmark_results.txt](benchmark_results.txt)
135
+ * benchmark output: [benchmark_translations.zip](benchmark_translations.zip)
136
+
137
+ | langpair | testset | chr-F | BLEU | #sent | #words |
138
+ |----------|---------|-------|-------|-------|--------|
139
+ | kor-eng | tatoeba-test-v2021-08-07 | 0.58829 | 41.3 | 2400 | 17619 |
140
+ | kor-eng | flores101-devtest | 0.56615 | 27.7 | 1012 | 24721 |
141
+
142
+ ## Citation Information
143
+
144
+ * Publications: [OPUS-MT – Building open translation services for the World](https://aclanthology.org/2020.eamt-1.61/) and [The Tatoeba Translation Challenge – Realistic Data Sets for Low Resource and Multilingual MT](https://aclanthology.org/2020.wmt-1.139/) (Please, cite if you use this model.)
145
+
146
+ ```
147
+ @inproceedings{tiedemann-thottingal-2020-opus,
148
+ title = "{OPUS}-{MT} {--} Building open translation services for the World",
149
+ author = {Tiedemann, J{\"o}rg and Thottingal, Santhosh},
150
+ booktitle = "Proceedings of the 22nd Annual Conference of the European Association for Machine Translation",
151
+ month = nov,
152
+ year = "2020",
153
+ address = "Lisboa, Portugal",
154
+ publisher = "European Association for Machine Translation",
155
+ url = "https://aclanthology.org/2020.eamt-1.61",
156
+ pages = "479--480",
157
+ }
158
+
159
+ @inproceedings{tiedemann-2020-tatoeba,
160
+ title = "The Tatoeba Translation Challenge {--} Realistic Data Sets for Low Resource and Multilingual {MT}",
161
+ author = {Tiedemann, J{\"o}rg},
162
+ booktitle = "Proceedings of the Fifth Conference on Machine Translation",
163
+ month = nov,
164
+ year = "2020",
165
+ address = "Online",
166
+ publisher = "Association for Computational Linguistics",
167
+ url = "https://aclanthology.org/2020.wmt-1.139",
168
+ pages = "1174--1182",
169
+ }
170
+ ```
171
+
172
+ ## Acknowledgements
173
+
174
+ The work is supported by the [European Language Grid](https://www.european-language-grid.eu/) as [pilot project 2866](https://live.european-language-grid.eu/catalogue/#/resource/projects/2866), by the [FoTran project](https://www.helsinki.fi/en/researchgroups/natural-language-understanding-with-cross-lingual-grounding), funded by the European Research Council (ERC) under the European Union’s Horizon 2020 research and innovation programme (grant agreement No 771113), and the [MeMAD project](https://memad.eu/), funded by the European Union’s Horizon 2020 Research and Innovation Programme under grant agreement No 780069. We are also grateful for the generous computational resources and IT infrastructure provided by [CSC -- IT Center for Science](https://www.csc.fi/), Finland.
175
+
176
+ ## Model conversion info
177
+
178
+ * transformers version: 4.16.2
179
+ * OPUS-MT git hash: 8b9f0b0
180
+ * port time: Fri Aug 12 11:19:05 EEST 2022
181
+ * port machine: LM0-400-22516.local
benchmark_results.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ kor-eng flores101-dev 0.57001 28.7 997 23555
2
+ kor-eng flores101-devtest 0.56615 27.7 1012 24721
3
+ kor-eng tatoeba-test-v2020-07-28 0.58798 41.3 2414 17711
4
+ kor-eng tatoeba-test-v2021-03-30 0.58798 41.3 2414 17711
5
+ kor-eng tatoeba-test-v2021-08-07 0.58829 41.3 2400 17619
benchmark_translations.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:921c388031acec9746774a16485d148472cde84b72de34f6ff04503711458b82
3
+ size 603538
config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "relu",
4
+ "architectures": [
5
+ "MarianMTModel"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "bad_words_ids": [
9
+ [
10
+ 32000
11
+ ]
12
+ ],
13
+ "bos_token_id": 0,
14
+ "classifier_dropout": 0.0,
15
+ "d_model": 1024,
16
+ "decoder_attention_heads": 16,
17
+ "decoder_ffn_dim": 4096,
18
+ "decoder_layerdrop": 0.0,
19
+ "decoder_layers": 6,
20
+ "decoder_start_token_id": 32000,
21
+ "decoder_vocab_size": 32001,
22
+ "dropout": 0.1,
23
+ "encoder_attention_heads": 16,
24
+ "encoder_ffn_dim": 4096,
25
+ "encoder_layerdrop": 0.0,
26
+ "encoder_layers": 6,
27
+ "eos_token_id": 2,
28
+ "forced_eos_token_id": 2,
29
+ "init_std": 0.02,
30
+ "is_encoder_decoder": true,
31
+ "max_length": 512,
32
+ "max_position_embeddings": 1024,
33
+ "model_type": "marian",
34
+ "normalize_embedding": false,
35
+ "num_beams": 4,
36
+ "num_hidden_layers": 6,
37
+ "pad_token_id": 32000,
38
+ "scale_embedding": true,
39
+ "share_encoder_decoder_embeddings": true,
40
+ "static_position_embeddings": true,
41
+ "torch_dtype": "float16",
42
+ "transformers_version": "4.18.0.dev0",
43
+ "use_cache": true,
44
+ "vocab_size": 32001
45
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df119d0d8c56d34591a0d513967ac2963e91ce2954358481e614175b3f55d69d
3
+ size 483946563
source.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcf0b63c9685de766ab3e10571a9a7f4a38eb39da51a4d64462757051d1986c7
3
+ size 815483
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>"}
target.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7188e2e643ef82257f2d0d5e2592185a42b0e472aff8ee6880331a0bff8904cd
3
+ size 789870
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"source_lang": "ko", "target_lang": "en", "unk_token": "<unk>", "eos_token": "</s>", "pad_token": "<pad>", "model_max_length": 512, "sp_model_kwargs": {}, "separate_vocabs": false, "special_tokens_map_file": null, "name_or_path": "marian-models/opusTCv20210807-sepvoc_transformer-big_2022-07-28/ko-en", "tokenizer_class": "MarianTokenizer"}
vocab.json ADDED
The diff for this file is too large to render. See raw diff