Views
No views yet
>>id<< (id = valid target language ID), e.g. >>bru<<1from transformers import MarianMTModel, MarianTokenizer
2
3src_text = [
4 ">>khm<< Der Junge wirft einen Stein.",
5 ">>vie<< ¿Y tú?"
6]
7
8model_name = "pytorch-models/opus-mt-tc-bible-big-deu_eng_fra_por_spa-aav"
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) )
15
16# expected output:
17# ក្មេងប្រុស នោះ យក ដុំ ថ្ម គប់ ។
18# Còn anh thì sao?1from transformers import pipeline
2pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-bible-big-deu_eng_fra_por_spa-aav")
3print(pipe(">>khm<< Der Junge wirft einen Stein."))
4
5# expected output: ក្មេងប្រុស នោះ យក ដុំ ថ្ម គប់ ។| langpair | testset | chr-F | BLEU | #sent | #words |
|---|---|---|---|---|---|
| deu-vie | tatoeba-test-v2021-08-07 | 0.45795 | 25.6 | 400 | 3768 |
| eng-hoc | tatoeba-test-v2021-08-07 | 6.438 | 0.2 | 660 | 2591 |
| eng-kha | tatoeba-test-v2021-08-07 | 5.741 | 0.0 | 1314 | 9269 |
| eng-vie | tatoeba-test-v2021-08-07 | 0.56461 | 39.4 | 2500 | 24427 |
| fra-vie | tatoeba-test-v2021-08-07 | 0.52806 | 35.2 | 1299 | 13219 |
| spa-vie | tatoeba-test-v2021-08-07 | 0.52131 | 34.2 | 594 | 4740 |
| deu-vie | flores101-devtest | 0.53381 | 33.8 | 1012 | 33331 |
| eng-khm | flores101-devtest | 0.42302 | 1.3 | 1012 | 7006 |
| eng-vie | flores101-devtest | 0.59621 | 42.1 | 1012 | 33331 |
| fra-khm | flores101-devtest | 0.40042 | 2.2 | 1012 | 7006 |
| por-khm | flores101-devtest | 0.40585 | 2.1 | 1012 | 7006 |
| por-vie | flores101-devtest | 0.54919 | 36.0 | 1012 | 33331 |
| spa-vie | flores101-devtest | 0.49921 | 27.8 | 1012 | 33331 |
| deu-vie | flores200-devtest | 0.53671 | 34.0 | 1012 | 33331 |
| eng-khm | flores200-devtest | 0.42148 | 1.3 | 1012 | 7006 |
| eng-vie | flores200-devtest | 0.59842 | 42.4 | 1012 | 33331 |
| fra-vie | flores200-devtest | 0.54101 | 34.6 | 1012 | 33331 |
| por-khm | flores200-devtest | 0.40832 | 1.9 | 1012 | 7006 |
| por-vie | flores200-devtest | 0.54970 | 36.1 | 1012 | 33331 |
| spa-vie | flores200-devtest | 0.50025 | 28.1 | 1012 | 33331 |
| deu-khm | ntrex128 | 0.44903 | 3.5 | 1997 | 15866 |
| deu-vie | ntrex128 | 0.52124 | 31.4 | 1997 | 64655 |
| eng-khm | ntrex128 | 0.50494 | 1.6 | 1997 | 15866 |
| eng-vie | ntrex128 | 3.831 | 0.0 | 1997 | 64655 |
| fra-khm | ntrex128 | 0.43841 | 2.4 | 1997 | 15866 |
| fra-vie | ntrex128 | 0.52044 | 31.8 | 1997 | 64655 |
| por-khm | ntrex128 | 0.46655 | 2.5 | 1997 | 15866 |
| por-vie | ntrex128 | 0.53060 | 33.3 | 1997 | 64655 |
| spa-khm | ntrex128 | 0.46443 | 2.7 | 1997 | 15866 |
| spa-vie | ntrex128 | 0.53293 | 33.4 | 1997 | 64655 |
| eng-khm | tico19-test | 0.47806 | 2.5 | 2100 | 15810 |
| fra-khm | tico19-test | 3.268 | 1.0 | 2100 | 15810 |
| por-khm | tico19-test | 3.900 | 1.1 | 2100 | 15810 |
| spa-khm | tico19-test | 3.784 | 1.0 | 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}