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

← All models

Helsinki-NLP_opus-mt-tc-big-en-fr

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
  • fr tags:
  • translation
  • opus-mt-tc license: cc-by-4.0 model-index:
  • name: opus-mt-tc-big-en-fr results:
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: flores101-devtest type: flores_101 args: eng fra devtest metrics:
      • name: BLEU type: bleu value: 52.2
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: multi30k_test_2016_flickr type: multi30k-2016_flickr args: eng-fra metrics:
      • name: BLEU type: bleu value: 52.4
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: multi30k_test_2017_flickr type: multi30k-2017_flickr args: eng-fra metrics:
      • name: BLEU type: bleu value: 52.8
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: multi30k_test_2017_mscoco type: multi30k-2017_mscoco args: eng-fra metrics:
      • name: BLEU type: bleu value: 54.7
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: multi30k_test_2018_flickr type: multi30k-2018_flickr args: eng-fra metrics:
      • name: BLEU type: bleu value: 43.7
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: news-test2008 type: news-test2008 args: eng-fra metrics:
      • name: BLEU type: bleu value: 27.6
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newsdiscussdev2015 type: newsdiscussdev2015 args: eng-fra metrics:
      • name: BLEU type: bleu value: 33.4
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newsdiscusstest2015 type: newsdiscusstest2015 args: eng-fra metrics:
      • name: BLEU type: bleu value: 40.3
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: eng-fra metrics:
      • name: BLEU type: bleu value: 53.2
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: tico19-test type: tico19-test args: eng-fra metrics:
      • name: BLEU type: bleu value: 40.6
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2009 type: wmt-2009-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 30.0
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2010 type: wmt-2010-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 33.5
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2011 type: wmt-2011-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 35.0
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2012 type: wmt-2012-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 32.8
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2013 type: wmt-2013-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 34.6
    • task: name: Translation eng-fra type: translation args: eng-fra dataset: name: newstest2014 type: wmt-2014-news args: eng-fra metrics:
      • name: BLEU type: bleu value: 41.9

opus-mt-tc-big-en-fr

Neural machine translation model for translating from English (en) to French (fr).

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

Usage

A short example code:

from transformers import MarianMTModel, MarianTokenizer

src_text = [
    "The Portuguese teacher is very demanding.",
    "When was your last hearing test?"
]

model_name = "pytorch-models/opus-mt-tc-big-en-fr"
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:
#     Le professeur de portugais est très exigeant.
#     Quand a eu lieu votre dernier test auditif ?

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-fr")
print(pipe("The Portuguese teacher is very demanding."))

# expected output: Le professeur de portugais est très exigeant.

Benchmarks

  • test set translations: opusTCv20210807+bt_transformer-big_2022-03-09.test.txt
  • test set scores: opusTCv20210807+bt_transformer-big_2022-03-09.eval.txt
  • benchmark results: benchmark_results.txt
  • benchmark output: benchmark_translations.zip
langpair testset chr-F BLEU #sent #words
eng-fra tatoeba-test-v2021-08-07 0.69621 53.2 12681 106378
eng-fra flores101-devtest 0.72494 52.2 1012 28343
eng-fra multi30k_test_2016_flickr 0.72361 52.4 1000 13505
eng-fra multi30k_test_2017_flickr 0.72826 52.8 1000 12118
eng-fra multi30k_test_2017_mscoco 0.73547 54.7 461 5484
eng-fra multi30k_test_2018_flickr 0.66723 43.7 1071 15867
eng-fra newsdiscussdev2015 0.60471 33.4 1500 27940
eng-fra newsdiscusstest2015 0.64915 40.3 1500 27975
eng-fra newssyscomb2009 0.58903 30.7 502 12331
eng-fra news-test2008 0.55516 27.6 2051 52685
eng-fra newstest2009 0.57907 30.0 2525 69263
eng-fra newstest2010 0.60156 33.5 2489 66022
eng-fra newstest2011 0.61632 35.0 3003 80626
eng-fra newstest2012 0.59736 32.8 3003 78011
eng-fra newstest2013 0.59700 34.6 3000 70037
eng-fra newstest2014 0.66686 41.9 3003 77306
eng-fra tico19-test 0.63022 40.6 2100 64661

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:07:05 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:21b468d2883fa8f75cceb990e54178df37cac64b&dn=Helsinki-NLP_opus-mt-tc-big-en-fr

Open magnet in torrent client · infohash 21b468d2883fa8f75cceb990e54178df37cac64b

Files & hashes

PathSizesha1sha256
README.md10.1 KB (10,312 B)273649c22a527c4faa3b371387e09a72e2bbccc56c0d6e0cc97d03683a0cd177554c7173a0b173b4857973d4e4dedf01c2c108cc
benchmark_results.txt1010 B (1,010 B)e60667e8b1beaa99c5203073ae71882e5d402334ad70614521ca72adda5ccbed7aa5ba64b96c8bf70a5c13a83aa5b633b387f03a
benchmark_translations.zip5.0 MB (5,211,139 B)9b8ac75c024f735437dd4c04d9f7e61ce07faac53ce1f9f481c9db40dbdc1649b3ba2abc17701179f4f266101028c284b5c1d76f
config.json1.1 KB (1,076 B)ca3cbbabcf54d5684af60fd278593b7579278758ac35de27c1645637a46d3b2f41052365ef52a7c23e169719629381f6b1fb025c
generation_config.json301 B (301 B)0852b0027501bf71b7a2ced362c4d9120be5fd52e08b63c58a6de96ea4275ac59681cefbf88663a10419e65e1510156061c43a88
model.safetensors440.1 MB (461,429,130 B)f9e9e34883ec7521adc398b8e874546cdd0b6e0a5c88b4f7a63934b8be72372b86661e616227c20be4b75612eeee7dca96494217
pytorch_model.bin440.1 MB (461,486,085 B)d4989a99979e5fa9fac1b688ef5750117a691655c052193ba860476ede63c4b0c70e4d2799c960a912538ffe398fc64884ef5030
source.spm783.6 KB (802,408 B)f17066849b4552c04297f70cd84918af202fb70718bb5a422a53a0bd699b005c8086cbd58a85c4be427fd57ca687c958588edcc9
special_tokens_map.json65 B (65 B)6dc4d430ddbd24171268d73da061ce9f0b09291109059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4
target.spm800.7 KB (819,955 B)1f31abddb037551104aebc45b0db3fc17b1f044e6437b5600d2ae14888939e589773b09bc667c77e81326e20e3f57698a4078593
tokenizer_config.json337 B (337 B)376b614d11088d4ca501f89ccce619f653b0f75e9cca379c911ab0d3b9138e0de1c521f1d7bad69889e168b3eb0e0f9f47e5a7fd
vocab.json1.3 MB (1,332,010 B)0ae8e956e87472aae2d7f0554a43a8d374672c1e2994b7def69d6495d8f02369b57e3f04e2474f76ce64eda2921643e1f76fef41

Cite this release

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

Provenance

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

Trackers

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

cc-by-4.0888.0 MB (931,093,828 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcmodel-indexendpoints_compatible3 languages (tf, en, fr)