Views
No views yet
>>id<< (id = valid target language ID), e.g. >>bru<<1from transformers import MarianMTModel, MarianTokenizer
2
3src_text = [
4 ">>bru<< Replace this with text in an accepted source language.",
5 ">>wbm<< This is the second sentence."
6]
7
8model_name = "pytorch-models/opus-mt-tc-bible-big-deu_eng_fra_por_spa-mkh"
9tokenizer = MarianTokenizer.from_pretrained(model_name)
10model = MarianMTModel.from_pretrained(model_name)
11translated = model.generate(**tokenizer(src_text, return_tensors="pt", padding=True))
12
13for t in translated:
14 print( tokenizer.decode(t, skip_special_tokens=True) )1from transformers import pipeline
2pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-bible-big-deu_eng_fra_por_spa-mkh")
3print(pipe(">>bru<< Replace this with text in an accepted source language."))| langpair | testset | chr-F | BLEU | #sent | #words |
|---|---|---|---|---|---|
| deu-vie | tatoeba-test-v2021-08-07 | 0.45222 | 25.3 | 400 | 3768 |
| eng-kha | tatoeba-test-v2021-08-07 | 9.076 | 0.4 | 1314 | 9269 |
| eng-vie | tatoeba-test-v2021-08-07 | 0.56413 | 39.0 | 2500 | 24427 |
| fra-vie | tatoeba-test-v2021-08-07 | 0.53078 | 35.6 | 1299 | 13219 |
| spa-vie | tatoeba-test-v2021-08-07 | 0.51783 | 34.0 | 594 | 4740 |
| deu-vie | flores101-devtest | 0.53623 | 33.9 | 1012 | 33331 |
| eng-khm | flores101-devtest | 0.42022 | 1.4 | 1012 | 7006 |
| eng-vie | flores101-devtest | 0.59986 | 42.7 | 1012 | 33331 |
| por-vie | flores101-devtest | 0.54819 | 35.7 | 1012 | 33331 |
| deu-vie | flores200-devtest | 0.53535 | 33.9 | 1012 | 33331 |
| eng-khm | flores200-devtest | 0.41987 | 1.3 | 1012 | 7006 |
| eng-vie | flores200-devtest | 0.60021 | 42.6 | 1012 | 33331 |
| fra-khm | flores200-devtest | 0.40241 | 2.3 | 1012 | 7006 |
| fra-vie | flores200-devtest | 0.54168 | 34.6 | 1012 | 33331 |
| por-khm | flores200-devtest | 0.41582 | 2.3 | 1012 | 7006 |
| por-vie | flores200-devtest | 0.55046 | 35.9 | 1012 | 33331 |
| spa-vie | flores200-devtest | 0.50262 | 28.1 | 1012 | 33331 |
| deu-khm | ntrex128 | 0.44917 | 3.2 | 1997 | 15866 |
| deu-vie | ntrex128 | 0.51996 | 31.2 | 1997 | 64655 |
| eng-khm | ntrex128 | 0.50215 | 1.6 | 1997 | 15866 |
| eng-vie | ntrex128 | 0.60050 | 42.7 | 1997 | 64655 |
| fra-khm | ntrex128 | 0.44024 | 2.3 | 1997 | 15866 |
| fra-vie | ntrex128 | 0.51988 | 31.7 | 1997 | 64655 |
| por-khm | ntrex128 | 0.46752 | 2.4 | 1997 | 15866 |
| por-vie | ntrex128 | 0.52931 | 33.3 | 1997 | 64655 |
| spa-khm | ntrex128 | 0.46166 | 2.5 | 1997 | 15866 |
| spa-vie | ntrex128 | 0.53347 | 33.1 | 1997 | 64655 |
| eng-khm | tico19-test | 0.54267 | 3.4 | 2100 | 15810 |
| fra-khm | tico19-test | 0.45333 | 4.8 | 2100 | 15810 |
| por-khm | tico19-test | 0.52339 | 6.8 | 2100 | 15810 |
| spa-khm | tico19-test | 0.51848 | 6.8 | 2100 | 15810 |
1@article{tiedemann2023democratizing,
2 title={Democratizing neural machine translation with {OPUS-MT}},
3 author={Tiedemann, J{\"o}rg and Aulamo, Mikko and Bakshandaeva, Daria and Boggia, Michele and Gr{\"o}nroos, Stig-Arne and Nieminen, Tommi and Raganato, Alessandro and Scherrer, Yves and Vazquez, Raul and Virpioja, Sami},
4 journal={Language Resources and Evaluation},
5 number={58},
6 pages={713--755},
7 year={2023},
8 publisher={Springer Nature},
9 issn={1574-0218},
10 doi={10.1007/s10579-023-09704-w}
11}
12
13@inproceedings{tiedemann-thottingal-2020-opus,
14 title = "{OPUS}-{MT} {--} Building open translation services for the World",
15 author = {Tiedemann, J{\"o}rg and Thottingal, Santhosh},
16 booktitle = "Proceedings of the 22nd Annual Conference of the European Association for Machine Translation",
17 month = nov,
18 year = "2020",
19 address = "Lisboa, Portugal",
20 publisher = "European Association for Machine Translation",
21 url = "https://aclanthology.org/2020.eamt-1.61",
22 pages = "479--480",
23}
24
25@inproceedings{tiedemann-2020-tatoeba,
26 title = "The Tatoeba Translation Challenge {--} Realistic Data Sets for Low Resource and Multilingual {MT}",
27 author = {Tiedemann, J{\"o}rg},
28 booktitle = "Proceedings of the Fifth Conference on Machine Translation",
29 month = nov,
30 year = "2020",
31 address = "Online",
32 publisher = "Association for Computational Linguistics",
33 url = "https://aclanthology.org/2020.wmt-1.139",
34 pages = "1174--1182",
35}