Views
No views yet
| testset | BLEU | chr-F |
|---|---|---|
| Tatoeba-test.zho.eng | 36.1 | 0.548 |
1@InProceedings{TiedemannThottingal:EAMT2020,
2 author = {J{\"o}rg Tiedemann and Santhosh Thottingal},
3 title = {{OPUS-MT} — {B}uilding open translation services for the {W}orld},
4 booktitle = {Proceedings of the 22nd Annual Conferenec of the European Association for Machine Translation (EAMT)},
5 year = {2020},
6 address = {Lisbon, Portugal}
7 }1from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
2
3tokenizer = AutoTokenizer.from_pretrained("Helsinki-NLP/opus-mt-zh-en")
4
5model = AutoModelForSeq2SeqLM.from_pretrained("Helsinki-NLP/opus-mt-zh-en")