Views
No views yet
>>id<< (id = valid target language ID), e.g. >>lav<<1from transformers import MarianMTModel, MarianTokenizer
2
3src_text = [
4 ">>lav<< Replace this with text in an accepted source language.",
5 ">>sgs<< This is the second sentence."
6]
7
8model_name = "pytorch-models/opus-mt-tc-bible-big-deu_eng_fra_por_spa-bat"
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-bat")
3print(pipe(">>lav<< Replace this with text in an accepted source language."))| langpair | testset | chr-F | BLEU | #sent | #words |
|---|---|---|---|---|---|
| deu-lit | tatoeba-test-v2021-08-07 | 0.65379 | 39.8 | 1115 | 7091 |
| eng-lav | tatoeba-test-v2021-08-07 | 0.68823 | 46.4 | 1631 | 9932 |
| eng-lit | tatoeba-test-v2021-08-07 | 0.67792 | 39.8 | 2528 | 14942 |
| spa-lit | tatoeba-test-v2021-08-07 | 0.68133 | 43.3 | 454 | 2352 |
| deu-lav | flores101-devtest | 0.54724 | 24.4 | 1012 | 22092 |
| eng-lav | flores101-devtest | 0.59955 | 31.0 | 1012 | 22092 |
| eng-lit | flores101-devtest | 0.58961 | 27.2 | 1012 | 20695 |
| fra-lav | flores101-devtest | 0.54276 | 24.2 | 1012 | 22092 |
| fra-lit | flores101-devtest | 0.54665 | 22.4 | 1012 | 20695 |
| spa-lav | flores101-devtest | 0.50131 | 17.8 | 1012 | 22092 |
| deu-lit | flores200-devtest | 0.54957 | 22.6 | 1012 | 20695 |
| eng-lit | flores200-devtest | 0.59338 | 27.7 | 1012 | 20695 |
| fra-lit | flores200-devtest | 0.54683 | 22.3 | 1012 | 20695 |
| por-lit | flores200-devtest | 0.55033 | 22.6 | 1012 | 20695 |
| spa-lit | flores200-devtest | 0.50725 | 16.9 | 1012 | 20695 |
| eng-lav | newstest2017 | 0.53192 | 21.5 | 2001 | 39392 |
| eng-lit | newstest2019 | 0.51714 | 18.3 | 998 | 19711 |
| deu-lav | ntrex128 | 0.47980 | 16.8 | 1997 | 44709 |
| deu-lit | ntrex128 | 0.50645 | 17.6 | 1997 | 41189 |
| eng-lav | ntrex128 | 0.51026 | 20.6 | 1997 | 44709 |
| eng-lit | ntrex128 | 0.54187 | 21.5 | 1997 | 41189 |
| fra-lav | ntrex128 | 0.45346 | 15.5 | 1997 | 44709 |
| fra-lit | ntrex128 | 0.48870 | 16.2 | 1997 | 41189 |
| por-lav | ntrex128 | 0.47809 | 17.3 | 1997 | 44709 |
| por-lit | ntrex128 | 0.50653 | 17.5 | 1997 | 41189 |
| spa-lav | ntrex128 | 0.47690 | 17.1 | 1997 | 44709 |
| spa-lit | ntrex128 | 0.50412 | 17.1 | 1997 | 41189 |
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}