Views
No views yet
@inproceedings{tiedemann-thottingal-2020-opus,
title = "{OPUS}-{MT} {--} Building open translation services for the World",
author = {Tiedemann, J{\"o}rg and Thottingal, Santhosh},
booktitle = "Proceedings of the 22nd Annual Conference of the European Association for Machine Translation",
month = nov,
year = "2020",
address = "Lisboa, Portugal",
publisher = "European Association for Machine Translation",
url = "https://aclanthology.org/2020.eamt-1.61",
pages = "479--480",
}
@inproceedings{tiedemann-2020-tatoeba,
title = "The Tatoeba Translation Challenge {--} Realistic Data Sets for Low Resource and Multilingual {MT}",
author = {Tiedemann, J{\"o}rg},
booktitle = "Proceedings of the Fifth Conference on Machine Translation",
month = nov,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2020.wmt-1.139",
pages = "1174--1182",
}>>id<< (id = valid target language ID), e.g. >>bel<<1from transformers import MarianMTModel, MarianTokenizer
2
3src_text = [
4 ">>rus<< Gdje je brigadir?",
5 ">>ukr<< Zovem se Seli."
6]
7
8model_name = "pytorch-models/opus-mt-tc-big-zls-zle"
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# Мене звати Саллі.1from transformers import pipeline
2pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-zls-zle")
3print(pipe(">>rus<< Gdje je brigadir?"))
4
5# expected output: Где бригадир?| langpair | testset | chr-F | BLEU | #sent | #words |
|---|---|---|---|---|---|
| bul-rus | tatoeba-test-v2021-08-07 | 0.71467 | 52.6 | 1247 | 7870 |
| bul-ukr | tatoeba-test-v2021-08-07 | 0.71757 | 53.3 | 1020 | 4932 |
| hbs-rus | tatoeba-test-v2021-08-07 | 0.74593 | 58.5 | 2500 | 14213 |
| hbs-ukr | tatoeba-test-v2021-08-07 | 0.70244 | 52.3 | 942 | 4961 |
| hrv-ukr | tatoeba-test-v2021-08-07 | 0.68931 | 50.0 | 389 | 2232 |
| slv-rus | tatoeba-test-v2021-08-07 | 0.42255 | 27.3 | 657 | 4056 |
| srp_Cyrl-rus | tatoeba-test-v2021-08-07 | 0.74112 | 56.2 | 881 | 5117 |
| srp_Cyrl-ukr | tatoeba-test-v2021-08-07 | 0.68915 | 51.8 | 205 | 1061 |
| srp_Latn-rus | tatoeba-test-v2021-08-07 | 0.75340 | 60.1 | 1483 | 8311 |
| srp_Latn-ukr | tatoeba-test-v2021-08-07 | 0.73106 | 55.8 | 348 | 1668 |
| bul-rus | flores101-devtest | 0.54226 | 24.6 | 1012 | 23295 |
| bul-ukr | flores101-devtest | 0.53382 | 22.9 | 1012 | 22810 |
| hrv-rus | flores101-devtest | 0.51726 | 23.5 | 1012 | 23295 |
| hrv-ukr | flores101-devtest | 0.51011 | 21.9 | 1012 | 22810 |
| mkd-bel | flores101-devtest | 0.40885 | 10.7 | 1012 | 24829 |
| mkd-rus | flores101-devtest | 0.52509 | 24.3 | 1012 | 23295 |
| mkd-ukr | flores101-devtest | 0.52021 | 22.5 | 1012 | 22810 |
| slv-rus | flores101-devtest | 0.50349 | 22.0 | 1012 | 23295 |
| slv-ukr | flores101-devtest | 0.49156 | 20.2 | 1012 | 22810 |
| srp_Cyrl-rus | flores101-devtest | 0.53656 | 25.7 | 1012 | 23295 |
| srp_Cyrl-ukr | flores101-devtest | 0.53623 | 24.4 | 1012 | 22810 |