Views
No views yet
>>id<< (id = valid target language ID), e.g. >>deu<<1from transformers import MarianMTModel, MarianTokenizer
2
3src_text = [
4 ">>deu<< Replace this with text in an accepted source language.",
5 ">>spa<< This is the second sentence."
6]
7
8model_name = "pytorch-models/opus-mt-tc-bible-big-alv-deu_eng_fra_por_spa"
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-alv-deu_eng_fra_por_spa")
3print(pipe(">>deu<< Replace this with text in an accepted source language."))| langpair | testset | chr-F | BLEU | #sent | #words |
|---|---|---|---|---|---|
| run-eng | tatoeba-test-v2021-08-07 | 0.49949 | 34.9 | 1703 | 10041 |
| run-fra | tatoeba-test-v2021-08-07 | 0.41431 | 22.4 | 1274 | 7479 |
| swa-eng | tatoeba-test-v2021-08-07 | 0.57031 | 41.5 | 387 | 2508 |
| swh-por | flores101-devtest | 0.40847 | 14.7 | 1012 | 26519 |
| kin-eng | flores200-devtest | 0.41964 | 18.1 | 1012 | 24721 |
| nso-eng | flores200-devtest | 0.45662 | 22.3 | 1012 | 24721 |
| sna-eng | flores200-devtest | 0.41974 | 17.2 | 1012 | 24721 |
| sot-eng | flores200-devtest | 0.45415 | 20.7 | 1012 | 24721 |
| swh-eng | flores200-devtest | 0.54048 | 29.1 | 1012 | 24721 |
| swh-fra | flores200-devtest | 0.44837 | 18.2 | 1012 | 28343 |
| swh-por | flores200-devtest | 0.44062 | 17.6 | 1012 | 26519 |
| tsn-eng | flores200-devtest | 0.40410 | 15.3 | 1012 | 24721 |
| tso-eng | flores200-devtest | 0.41504 | 17.6 | 1012 | 24721 |
| xho-eng | flores200-devtest | 0.47667 | 23.7 | 1012 | 24721 |
| zul-eng | flores200-devtest | 0.47798 | 23.4 | 1012 | 24721 |
| ibo-eng | ntrex128 | 0.42002 | 17.4 | 1997 | 47673 |
| kin-eng | ntrex128 | 0.42892 | 16.9 | 1997 | 47673 |
| nso-eng | ntrex128 | 0.42278 | 17.0 | 1997 | 47673 |
| nya-eng | ntrex128 | 0.42702 | 19.2 | 1997 | 47673 |
| ssw-eng | ntrex128 | 0.43041 | 18.0 | 1997 | 47673 |
| swa-eng | ntrex128 | 0.54492 | 30.4 | 1997 | 47673 |
| swa-fra | ntrex128 | 0.43008 | 15.6 | 1997 | 53481 |
| swa-por | ntrex128 | 0.42343 | 15.4 | 1997 | 51631 |
| swa-spa | ntrex128 | 0.44892 | 18.9 | 1997 | 54107 |
| tsn-eng | ntrex128 | 0.44944 | 20.1 | 1997 | 47673 |
| xho-eng | ntrex128 | 0.46636 | 21.8 | 1997 | 47673 |
| zul-eng | ntrex128 | 0.45848 | 21.9 | 1997 | 47673 |
| zul-eng | tico19-test | 0.48762 | 25.2 | 2100 | 56804 |
| zul-spa | tico19-test | 0.40041 | 15.9 | 2100 | 66563 |
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}