Translation
Transformers
PyTorch
TensorFlow
Safetensors
English
Lithuanian
marian
text2text-generation
opus-mt-tc
Eval Results (legacy)
Instructions to use Helsinki-NLP/opus-mt-tc-big-en-lt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Helsinki-NLP/opus-mt-tc-big-en-lt with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-en-lt")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Helsinki-NLP/opus-mt-tc-big-en-lt") model = AutoModelForSeq2SeqLM.from_pretrained("Helsinki-NLP/opus-mt-tc-big-en-lt", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Initial commit
Browse files- .gitattributes +1 -0
- README.md +165 -0
- benchmark_results.txt +7 -0
- benchmark_translations.zip +3 -0
- config.json +45 -0
- pytorch_model.bin +3 -0
- source.spm +3 -0
- special_tokens_map.json +1 -0
- target.spm +3 -0
- tokenizer_config.json +1 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -26,3 +26,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.spm filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- lt
|
| 5 |
+
|
| 6 |
+
tags:
|
| 7 |
+
- translation
|
| 8 |
+
|
| 9 |
+
license: cc-by-4.0
|
| 10 |
+
model-index:
|
| 11 |
+
- name: opus-mt-tc-big-en-lt
|
| 12 |
+
results:
|
| 13 |
+
- task:
|
| 14 |
+
name: Translation eng-lit
|
| 15 |
+
type: translation
|
| 16 |
+
args: eng-lit
|
| 17 |
+
dataset:
|
| 18 |
+
name: flores101-devtest
|
| 19 |
+
type: flores_101
|
| 20 |
+
args: eng lit devtest
|
| 21 |
+
metrics:
|
| 22 |
+
- name: BLEU
|
| 23 |
+
type: bleu
|
| 24 |
+
value: 28.0
|
| 25 |
+
- task:
|
| 26 |
+
name: Translation eng-lit
|
| 27 |
+
type: translation
|
| 28 |
+
args: eng-lit
|
| 29 |
+
dataset:
|
| 30 |
+
name: newsdev2019
|
| 31 |
+
type: newsdev2019
|
| 32 |
+
args: eng-lit
|
| 33 |
+
metrics:
|
| 34 |
+
- name: BLEU
|
| 35 |
+
type: bleu
|
| 36 |
+
value: 26.6
|
| 37 |
+
- task:
|
| 38 |
+
name: Translation eng-lit
|
| 39 |
+
type: translation
|
| 40 |
+
args: eng-lit
|
| 41 |
+
dataset:
|
| 42 |
+
name: tatoeba-test-v2021-08-07
|
| 43 |
+
type: tatoeba_mt
|
| 44 |
+
args: eng-lit
|
| 45 |
+
metrics:
|
| 46 |
+
- name: BLEU
|
| 47 |
+
type: bleu
|
| 48 |
+
value: 39.5
|
| 49 |
+
- task:
|
| 50 |
+
name: Translation eng-lit
|
| 51 |
+
type: translation
|
| 52 |
+
args: eng-lit
|
| 53 |
+
dataset:
|
| 54 |
+
name: newstest2019
|
| 55 |
+
type: wmt-2019-news
|
| 56 |
+
args: eng-lit
|
| 57 |
+
metrics:
|
| 58 |
+
- name: BLEU
|
| 59 |
+
type: bleu
|
| 60 |
+
value: 17.5
|
| 61 |
+
---
|
| 62 |
+
# opus-mt-tc-big-en-lt
|
| 63 |
+
|
| 64 |
+
Neural machine translation model for translating from English (en) to Lithuanian (lt).
|
| 65 |
+
|
| 66 |
+
This model is part of the [OPUS-MT project](https://github.com/Helsinki-NLP/Opus-MT), an effort to make neural machine translation models widely available and accessible for many languages in the world. All models are originally trained using the amazing framework of [Marian NMT](https://marian-nmt.github.io/), an efficient NMT implementation written in pure C++. The models have been converted to pyTorch using the transformers library by huggingface. Training data is taken from [OPUS](https://opus.nlpl.eu/) and training pipelines use the procedures of [OPUS-MT-train](https://github.com/Helsinki-NLP/Opus-MT-train).
|
| 67 |
+
|
| 68 |
+
* Publications: [OPUS-MT – Building open translation services for the World](https://aclanthology.org/2020.eamt-1.61/) and [The Tatoeba Translation Challenge – Realistic Data Sets for Low Resource and Multilingual MT](https://aclanthology.org/2020.wmt-1.139/) (Please, cite if you use this model.)
|
| 69 |
+
|
| 70 |
+
```
|
| 71 |
+
@inproceedings{tiedemann-thottingal-2020-opus,
|
| 72 |
+
title = "{OPUS}-{MT} {--} Building open translation services for the World",
|
| 73 |
+
author = {Tiedemann, J{\"o}rg and Thottingal, Santhosh},
|
| 74 |
+
booktitle = "Proceedings of the 22nd Annual Conference of the European Association for Machine Translation",
|
| 75 |
+
month = nov,
|
| 76 |
+
year = "2020",
|
| 77 |
+
address = "Lisboa, Portugal",
|
| 78 |
+
publisher = "European Association for Machine Translation",
|
| 79 |
+
url = "https://aclanthology.org/2020.eamt-1.61",
|
| 80 |
+
pages = "479--480",
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
@inproceedings{tiedemann-2020-tatoeba,
|
| 84 |
+
title = "The Tatoeba Translation Challenge {--} Realistic Data Sets for Low Resource and Multilingual {MT}",
|
| 85 |
+
author = {Tiedemann, J{\"o}rg},
|
| 86 |
+
booktitle = "Proceedings of the Fifth Conference on Machine Translation",
|
| 87 |
+
month = nov,
|
| 88 |
+
year = "2020",
|
| 89 |
+
address = "Online",
|
| 90 |
+
publisher = "Association for Computational Linguistics",
|
| 91 |
+
url = "https://aclanthology.org/2020.wmt-1.139",
|
| 92 |
+
pages = "1174--1182",
|
| 93 |
+
}
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## Model info
|
| 97 |
+
|
| 98 |
+
* Release: 2022-02-25
|
| 99 |
+
* source language(s): eng
|
| 100 |
+
* target language(s): lit
|
| 101 |
+
* model: transformer-big
|
| 102 |
+
* data: opusTCv20210807+bt ([source](https://github.com/Helsinki-NLP/Tatoeba-Challenge))
|
| 103 |
+
* tokenization: SentencePiece (spm32k,spm32k)
|
| 104 |
+
* original model: [opusTCv20210807+bt_transformer-big_2022-02-25.zip](https://object.pouta.csc.fi/Tatoeba-MT-models/eng-lit/opusTCv20210807+bt_transformer-big_2022-02-25.zip)
|
| 105 |
+
* more information released models: [OPUS-MT eng-lit README](https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/eng-lit/README.md)
|
| 106 |
+
|
| 107 |
+
## Usage
|
| 108 |
+
|
| 109 |
+
A short example code:
|
| 110 |
+
|
| 111 |
+
```python
|
| 112 |
+
from transformers import MarianMTModel, MarianTokenizer
|
| 113 |
+
|
| 114 |
+
src_text = [
|
| 115 |
+
"A cat was sitting on the chair.",
|
| 116 |
+
"Yukiko likes potatoes."
|
| 117 |
+
]
|
| 118 |
+
|
| 119 |
+
model_name = "pytorch-models/opus-mt-tc-big-en-lt"
|
| 120 |
+
tokenizer = MarianTokenizer.from_pretrained(model_name)
|
| 121 |
+
model = MarianMTModel.from_pretrained(model_name)
|
| 122 |
+
translated = model.generate(**tokenizer(src_text, return_tensors="pt", padding=True))
|
| 123 |
+
|
| 124 |
+
for t in translated:
|
| 125 |
+
print( tokenizer.decode(t, skip_special_tokens=True) )
|
| 126 |
+
|
| 127 |
+
# expected output:
|
| 128 |
+
# Katė sėdėjo ant kėdės.
|
| 129 |
+
# Jukiko mėgsta bulves.
|
| 130 |
+
```
|
| 131 |
+
|
| 132 |
+
You can also use OPUS-MT models with the transformers pipelines, for example:
|
| 133 |
+
|
| 134 |
+
```python
|
| 135 |
+
from transformers import pipeline
|
| 136 |
+
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-en-lt")
|
| 137 |
+
print(pipe("A cat was sitting on the chair."))
|
| 138 |
+
|
| 139 |
+
# expected output: Katė sėdėjo ant kėdės.
|
| 140 |
+
```
|
| 141 |
+
|
| 142 |
+
## Benchmarks
|
| 143 |
+
|
| 144 |
+
* test set translations: [opusTCv20210807+bt_transformer-big_2022-02-25.test.txt](https://object.pouta.csc.fi/Tatoeba-MT-models/eng-lit/opusTCv20210807+bt_transformer-big_2022-02-25.test.txt)
|
| 145 |
+
* test set scores: [opusTCv20210807+bt_transformer-big_2022-02-25.eval.txt](https://object.pouta.csc.fi/Tatoeba-MT-models/eng-lit/opusTCv20210807+bt_transformer-big_2022-02-25.eval.txt)
|
| 146 |
+
* benchmark results: [benchmark_results.txt](benchmark_results.txt)
|
| 147 |
+
* benchmark output: [benchmark_translations.zip](benchmark_translations.zip)
|
| 148 |
+
|
| 149 |
+
| langpair | testset | chr-F | BLEU | #sent | #words |
|
| 150 |
+
|----------|---------|-------|-------|-------|--------|
|
| 151 |
+
| eng-lit | tatoeba-test-v2021-08-07 | 0.67434 | 39.5 | 2528 | 14942 |
|
| 152 |
+
| eng-lit | flores101-devtest | 0.59593 | 28.0 | 1012 | 20695 |
|
| 153 |
+
| eng-lit | newsdev2019 | 0.58444 | 26.6 | 2000 | 39627 |
|
| 154 |
+
| eng-lit | newstest2019 | 0.51559 | 17.5 | 998 | 19711 |
|
| 155 |
+
|
| 156 |
+
## Acknowledgements
|
| 157 |
+
|
| 158 |
+
The work is supported by the [European Language Grid](https://www.european-language-grid.eu/) as [pilot project 2866](https://live.european-language-grid.eu/catalogue/#/resource/projects/2866), by the [FoTran project](https://www.helsinki.fi/en/researchgroups/natural-language-understanding-with-cross-lingual-grounding), funded by the European Research Council (ERC) under the European Union’s Horizon 2020 research and innovation programme (grant agreement No 771113), and the [MeMAD project](https://memad.eu/), funded by the European Union’s Horizon 2020 Research and Innovation Programme under grant agreement No 780069. We are also grateful for the generous computational resources and IT infrastructure provided by [CSC -- IT Center for Science](https://www.csc.fi/), Finland.
|
| 159 |
+
|
| 160 |
+
## Model conversion info
|
| 161 |
+
|
| 162 |
+
* transformers version: 4.16.2
|
| 163 |
+
* OPUS-MT git hash: 3405783
|
| 164 |
+
* port time: Wed Apr 13 17:42:39 EEST 2022
|
| 165 |
+
* port machine: LM0-400-22516.local
|
benchmark_results.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
eng-lit flores101-dev 0.58441 26.5 997 20018
|
| 2 |
+
eng-lit flores101-devtest 0.59593 28.0 1012 20695
|
| 3 |
+
eng-lit newsdev2019 0.58444 26.6 2000 39627
|
| 4 |
+
eng-lit newstest2019 0.51559 17.5 998 19711
|
| 5 |
+
eng-lit tatoeba-test-v2020-07-28 0.67475 39.5 2500 14798
|
| 6 |
+
eng-lit tatoeba-test-v2021-03-30 0.67445 39.5 5003 29598
|
| 7 |
+
eng-lit tatoeba-test-v2021-08-07 0.67434 39.5 2528 14942
|
benchmark_translations.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aef0fb7e466c9ee1ff2b5a495acd402ed7a5dcd288aef865dba427fde7dbe248
|
| 3 |
+
size 1082504
|
config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"activation_dropout": 0.0,
|
| 3 |
+
"activation_function": "relu",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"MarianMTModel"
|
| 6 |
+
],
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"bad_words_ids": [
|
| 9 |
+
[
|
| 10 |
+
58576
|
| 11 |
+
]
|
| 12 |
+
],
|
| 13 |
+
"bos_token_id": 0,
|
| 14 |
+
"classifier_dropout": 0.0,
|
| 15 |
+
"d_model": 1024,
|
| 16 |
+
"decoder_attention_heads": 16,
|
| 17 |
+
"decoder_ffn_dim": 4096,
|
| 18 |
+
"decoder_layerdrop": 0.0,
|
| 19 |
+
"decoder_layers": 6,
|
| 20 |
+
"decoder_start_token_id": 58576,
|
| 21 |
+
"decoder_vocab_size": 58577,
|
| 22 |
+
"dropout": 0.1,
|
| 23 |
+
"encoder_attention_heads": 16,
|
| 24 |
+
"encoder_ffn_dim": 4096,
|
| 25 |
+
"encoder_layerdrop": 0.0,
|
| 26 |
+
"encoder_layers": 6,
|
| 27 |
+
"eos_token_id": 44847,
|
| 28 |
+
"forced_eos_token_id": 44847,
|
| 29 |
+
"init_std": 0.02,
|
| 30 |
+
"is_encoder_decoder": true,
|
| 31 |
+
"max_length": 512,
|
| 32 |
+
"max_position_embeddings": 1024,
|
| 33 |
+
"model_type": "marian",
|
| 34 |
+
"normalize_embedding": false,
|
| 35 |
+
"num_beams": 4,
|
| 36 |
+
"num_hidden_layers": 6,
|
| 37 |
+
"pad_token_id": 58576,
|
| 38 |
+
"scale_embedding": true,
|
| 39 |
+
"share_encoder_decoder_embeddings": true,
|
| 40 |
+
"static_position_embeddings": true,
|
| 41 |
+
"torch_dtype": "float16",
|
| 42 |
+
"transformers_version": "4.18.0.dev0",
|
| 43 |
+
"use_cache": true,
|
| 44 |
+
"vocab_size": 58577
|
| 45 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4c845392a4e8420335eb1a5f732a5696cc0e94c4f969607183b5a9cdcad09b3
|
| 3 |
+
size 592854979
|
source.spm
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c494c9df0fb537038a2f1fbd7794dd83e859745dae7a9b512c2263338d86177
|
| 3 |
+
size 801213
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>"}
|
target.spm
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80e652327bda51d3169693b50844168ff1f2d34d462ff9e3450bd23ed66a2f17
|
| 3 |
+
size 836803
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"source_lang": "en", "target_lang": "lt", "unk_token": "<unk>", "eos_token": "</s>", "pad_token": "<pad>", "model_max_length": 512, "sp_model_kwargs": {}, "separate_vocabs": false, "special_tokens_map_file": null, "name_or_path": "marian-models/opusTCv20210807+bt_transformer-big_2022-02-25/en-lt", "tokenizer_class": "MarianTokenizer"}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|