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

← All models

Helsinki-NLP_opus-mt-tc-big-fi-en

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
  • fi tags:
  • translation
  • opus-mt-tc license: cc-by-4.0 model-index:
  • name: opus-mt-tc-big-fi-en results:
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: flores101-devtest type: flores_101 args: fin eng devtest metrics:
      • name: BLEU type: bleu value: 35.4
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newsdev2015 type: newsdev2015 args: fin-eng metrics:
      • name: BLEU type: bleu value: 28.6
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: fin-eng metrics:
      • name: BLEU type: bleu value: 57.4
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newstest2015 type: wmt-2015-news args: fin-eng metrics:
      • name: BLEU type: bleu value: 29.9
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newstest2016 type: wmt-2016-news args: fin-eng metrics:
      • name: BLEU type: bleu value: 34.3
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newstest2017 type: wmt-2017-news args: fin-eng metrics:
      • name: BLEU type: bleu value: 37.3
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newstest2018 type: wmt-2018-news args: fin-eng metrics:
      • name: BLEU type: bleu value: 27.1
    • task: name: Translation fin-eng type: translation args: fin-eng dataset: name: newstest2019 type: wmt-2019-news args: fin-eng metrics:
      • name: BLEU type: bleu value: 32.7

opus-mt-tc-big-fi-en

Neural machine translation model for translating from Finnish (fi) to English (en).

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: 2021-12-08
  • source language(s): fin
  • target language(s): eng
  • model: transformer (big)
  • data: opusTCv20210807+bt (source)
  • tokenization: SentencePiece (spm32k,spm32k)
  • original model: opusTCv20210807+bt-2021-12-08.zip
  • more information released models: OPUS-MT fin-eng README

Usage

A short example code:

from transformers import MarianMTModel, MarianTokenizer

src_text = [
    "Kolme kolmanteen on kaksikymmentäseitsemän.",
    "Heille syntyi poikavauva."
]

model_name = "pytorch-models/opus-mt-tc-big-fi-en"
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) )

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-fi-en")
print(pipe("Kolme kolmanteen on kaksikymmentäseitsemän."))

Benchmarks

  • test set translations: opusTCv20210807+bt-2021-12-08.test.txt
  • test set scores: opusTCv20210807+bt-2021-12-08.eval.txt
  • benchmark results: benchmark_results.txt
  • benchmark output: benchmark_translations.zip
langpair testset chr-F BLEU #sent #words
fin-eng tatoeba-test-v2021-08-07 0.72298 57.4 10690 80552
fin-eng flores101-devtest 0.62521 35.4 1012 24721
fin-eng newsdev2015 0.56232 28.6 1500 32012
fin-eng newstest2015 0.57469 29.9 1370 27270
fin-eng newstest2016 0.60715 34.3 3000 62945
fin-eng newstest2017 0.63050 37.3 3002 61846
fin-eng newstest2018 0.54199 27.1 3000 62325
fin-eng newstest2019 0.59620 32.7 1996 36215
fin-eng newstestB2016 0.55472 27.9 3000 62945
fin-eng newstestB2017 0.58847 31.1 3002 61846

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: f084bad
  • port time: Tue Mar 22 14:52:19 EET 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:751b1c9967662b0f5967b4e590077fc3f64b168e&dn=Helsinki-NLP_opus-mt-tc-big-fi-en

Open magnet in torrent client · infohash 751b1c9967662b0f5967b4e590077fc3f64b168e

Files & hashes

PathSizesha1sha256
README.md7.4 KB (7,565 B)768db2072848c284f645d657c77408ead55e23375396ac7b7c7d7ad9d8bc3ee50692d0e456f5c88776df1cf67d3ac524063739a5
README.md~7.5 KB (7,651 B)3638f9c2f24a06912a6ebe15b4810ab8b6dcec110de8b4d8a3c6372e92c954ce76050434c2a1930627f14d8aa5b00068dc5155f9
benchmark_results.txt630 B (630 B)4479850b9151cbcd5ed67e025bde65807976c0c773b3087b36478f55d64ad66f37df93afa6ebe0fb0396cfaf7183427e28228641
benchmark_translations.zip3.6 MB (3,769,431 B)9ccd37a4c1ffaf857b7a8eb4b15b8284673cad9f4485d62be0f6aa88d0b10d656ec3f1d0a5e7348ecf6ea8aef39d1723ff0001f0
config.json1.1 KB (1,076 B)314ee15bc4c6da2838c2eb61b459b16a5191049e74cd9454222585e8496c20ac1a3ce82e53b7eae5681e451e8f1f0970a2125622
generation_config.json301 B (301 B)deb00f4978d90481e46ec6edaee1c1b6321c404d79600977825da43d0ffe22fe3236bc382f1c7d00b59257bcee894d971234be99
model.safetensors449.5 MB (471,295,780 B)e581919b76564a6a4d8c600f6bf3a771cba3ce8d78b81c43b0752c41facfb4a7f2f007e3085f38289d3ddf0e37ac45b9c05ee19b
pytorch_model.bin449.5 MB (471,352,773 B)bc957ad9db71c522bb72072fc1c5bf59f8e9b8f51ef6427a84c632b027ee9f892da540d30b23b60b94bc4b43e0c54a77e4108c0a
source.spm812.4 KB (831,865 B)edae2a8acff969b395210fd433d7cf5bb901ac4e82fcb74f79c5f5b5bf0fe73f7dfb6a646efa50ffb4b2a0cd564a1193c78a032e
special_tokens_map.json65 B (65 B)6dc4d430ddbd24171268d73da061ce9f0b09291109059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4
target.spm771.3 KB (789,795 B)c70ceb7b8f0b0d3f346a7e5c1acfe082005a4d4fec7b44af3bba8e0439b9cf203adf29e37921ae6711491d138e219b9f1b69d84c
tokenizer_config.json321 B (321 B)edcb42307eb4f7acc87b738f153a205723658011f088adb0df5a6f63b7e19e671d8fe255504247086f8e149a7196e6ff33b88a79
vocab.json1.4 MB (1,458,135 B)b1a1ffb27ba730c7bce7c8593682441ac7ca51b02194fe11b5936e42503a0e62c299152384f95bb85393cd5a900fb70d7c4a240f

Cite this release

Canonical URL
https://aiseedbank.org/models/Helsinki-NLP_opus-mt-tc-big-fi-en/
Slug
Helsinki-NLP_opus-mt-tc-big-fi-en
Infohash
751b1c9967662b0f5967b4e590077fc3f64b168e
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-fi-en.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryHelsinki-NLP/opus-mt-tc-big-fi-en
Revision (pinned)956e13710061738d21f677e4ed16a56546511c0f
Fetched at2026-09-02T03:15:19Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T03:15:30Z

cc-by-4.0905.5 MB (949,515,388 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcmodel-indexendpoints_compatible3 languages (tf, en, fi)