AI SeedbankHelp preserve open and free AI for humanity's future

← All models

Helsinki-NLP_opus-mt-tc-big-en-lv

Helsinki-NLP · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


language:

  • en
  • lv tags:
  • translation
  • opus-mt-tc license: cc-by-4.0 model-index:
  • name: opus-mt-tc-big-en-lv results:
    • task: name: Translation eng-lav type: translation args: eng-lav dataset: name: flores101-devtest type: flores_101 args: eng lav devtest metrics:
      • name: BLEU type: bleu value: 30.1
    • task: name: Translation eng-lav type: translation args: eng-lav dataset: name: newsdev2017 type: newsdev2017 args: eng-lav metrics:
      • name: BLEU type: bleu value: 28.9
    • task: name: Translation eng-lav type: translation args: eng-lav dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: eng-lav metrics:
      • name: BLEU type: bleu value: 44.0
    • task: name: Translation eng-lav type: translation args: eng-lav dataset: name: newstest2017 type: wmt-2017-news args: eng-lav metrics:
      • name: BLEU type: bleu value: 22.1

opus-mt-tc-big-en-lv

Neural machine translation model for translating from English (en) to Latvian (lv).

This model is part of the OPUS-MT project, 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, 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 and training pipelines use the procedures of OPUS-MT-train.

  • Publications: OPUS-MT – Building open translation services for the World and The Tatoeba Translation Challenge – Realistic Data Sets for Low Resource and Multilingual MT (Please, cite if you use this model.)
@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",
}

Model info

  • Release: 2022-03-13
  • source language(s): eng
  • target language(s): lav
  • model: transformer-big
  • data: opusTCv20210807+bt (source)
  • tokenization: SentencePiece (spm32k,spm32k)
  • original model: opusTCv20210807+bt_transformer-big_2022-03-13.zip
  • more information released models: OPUS-MT eng-lav README

Usage

A short example code:

from transformers import MarianMTModel, MarianTokenizer

src_text = [
    ">>lav<< A day has twenty-four hours.",
    ">>ltg<< He's a good lawyer."
]

model_name = "pytorch-models/opus-mt-tc-big-en-lv"
tokenizer = MarianTokenizer.from_pretrained(model_name)
model = MarianMTModel.from_pretrained(model_name)
translated = model.generate(**tokenizer(src_text, return_tensors="pt", padding=True))

for t in translated:
    print( tokenizer.decode(t, skip_special_tokens=True) )

# expected output:
#     Dienā ir divdesmit četras stundas.
#     Vyss ir labs advokats.

You can also use OPUS-MT models with the transformers pipelines, for example:

from transformers import pipeline
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-en-lv")
print(pipe(">>lav<< A day has twenty-four hours."))

# expected output: Dienā ir divdesmit četras stundas.

Benchmarks

  • test set translations: opusTCv20210807+bt_transformer-big_2022-03-13.test.txt
  • test set scores: opusTCv20210807+bt_transformer-big_2022-03-13.eval.txt
  • benchmark results: benchmark_results.txt
  • benchmark output: benchmark_translations.zip
langpair testset chr-F BLEU #sent #words
eng-lav tatoeba-test-v2021-08-07 0.66411 44.0 1631 9932
eng-lav flores101-devtest 0.59397 30.1 1012 22092
eng-lav newsdev2017 0.58082 28.9 2003 41503
eng-lav newstest2017 0.53202 22.1 2001 39392

Acknowledgements

The work is supported by the European Language Grid as pilot project 2866, by the FoTran project, 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, 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, Finland.

Model conversion info

  • transformers version: 4.16.2
  • OPUS-MT git hash: 3405783
  • port time: Wed Apr 13 17:36:04 EEST 2022
  • port machine: LM0-400-22516.local

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:e361aec0c8ba6ebfb05c57c221a3add6e777cd92&dn=Helsinki-NLP_opus-mt-tc-big-en-lv

Open magnet in torrent client · infohash e361aec0c8ba6ebfb05c57c221a3add6e777cd92

Files & hashes

PathSizesha1sha256
README.md6.3 KB (6,495 B)9718f258fc122316f71e963316aa7e7803f05e65896ffff9ce47fc9d8188ec6c52970e796ab8d7d2872dc69e67fb9f1e2bce6caf
benchmark_results.txt352 B (352 B)7a781dd3109af0d97a0e38c08bf1d4183c1ddcf8fb77cf52d1f8e62ac76533f48bf990fbcdb01a677c6bd7b13e91744b7a75d82c
benchmark_translations.zip1022.4 KB (1,046,926 B)f66d515ca556f5b30fea81ae52df0ff25090d51a4794a8c92024b3e14a783d9c369e0517f3cc07aef5eeba5c6ecae3216772e5e5
config.json1.1 KB (1,076 B)677a933b6142399f15236299c8ba5fa8216259f7f32c1d49ac0bd361007b4071d53c60302cfffb401bdf7bc2551ce0e9bea668bc
generation_config.json301 B (301 B)1c728429be1c666536aff4d1aefb9ceb55531eb7489050d6dd552d6d1702f3525785f57a8e0b4fdc61f83b3416eee837c0031177
model.safetensors450.4 MB (472,255,180 B)54a4b02910ca098c7a97f16e697f871ce8e8bea548e4aeec9ddacc002472c8e5326cca6fbe0022b7ec2bbbaa409729cfac1ea4b7
pytorch_model.bin450.4 MB (472,312,133 B)3a4c41c3e0e41cd9b45d6eaa3cfa3c7f1d22bb8f88a3406033616826da3fcf8362adb719fbdc2676d2b9dae13cfaf807b5720c6b
source.spm779.3 KB (798,014 B)6384d101d3200ff338096d69209768174cfbdb2194634cc0b00a2a1e0e2e4317cc0a49d0154d835f7951425e45be15c72ba21417
special_tokens_map.json65 B (65 B)6dc4d430ddbd24171268d73da061ce9f0b09291109059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4
target.spm819.1 KB (838,711 B)c40f0a21a022a1f337f7083f25c42b5c01c7fc9125446f415fe316afbf692acf7ef5131a74940dc820e2cbe31300f09ac3c492dc
tokenizer_config.json337 B (337 B)1f9a646d79efe81e64fdd61fe9071f7d1a6c65610b739f4d05f57e8cb52b9680c4c2b10bbbce5d330f63fceeb133f63391025f10
vocab.json1.5 MB (1,533,412 B)08569c4a128286e9ae686c5e14afc83ece40b9c5a80065af55e815ca39bdac3ecb723bb866d37b62c1bea4fd8142fc960e55af1a

Cite this release

Canonical URL
https://aiseedbank.org/models/Helsinki-NLP_opus-mt-tc-big-en-lv/
Slug
Helsinki-NLP_opus-mt-tc-big-en-lv
Infohash
e361aec0c8ba6ebfb05c57c221a3add6e777cd92
License
cc-by-4.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: Helsinki-NLP_opus-mt-tc-big-en-lv.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryHelsinki-NLP/opus-mt-tc-big-en-lv
Revision (pinned)ab7643b9b00a02b4495ad5925ba5e3d0d0f938e5
Fetched at2026-09-02T03:14:47Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T03:14:59Z

cc-by-4.0904.8 MB (948,793,002 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcmodel-indexendpoints_compatible2 languages (en, lv)