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

← All models

Helsinki-NLP_opus-mt-tc-big-en-ar

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:

  • ar
  • en tags:
  • translation
  • opus-mt-tc license: cc-by-4.0 model-index:
  • name: opus-mt-tc-big-en-ar results:
    • task: name: Translation eng-ara type: translation args: eng-ara dataset: name: flores101-devtest type: flores_101 args: eng ara devtest metrics:
      • name: BLEU type: bleu value: 29.4
    • task: name: Translation eng-ara type: translation args: eng-ara dataset: name: tatoeba-test-v2020-07-28 type: tatoeba_mt args: eng-ara metrics:
      • name: BLEU type: bleu value: 20.0
    • task: name: Translation eng-ara type: translation args: eng-ara dataset: name: tico19-test type: tico19-test args: eng-ara metrics:
      • name: BLEU type: bleu value: 30.0

opus-mt-tc-big-en-ar

Neural machine translation model for translating from English (en) to Arabic (ar).

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-02-25
  • source language(s): eng
  • target language(s): afb ara
  • valid target language labels: >>afb<< >>ara<<
  • model: transformer-big
  • data: opusTCv20210807+bt (source)
  • tokenization: SentencePiece (spm32k,spm32k)
  • original model: opusTCv20210807+bt_transformer-big_2022-02-25.zip
  • more information released models: OPUS-MT eng-ara README
  • more information about the model: MarianMT

This is a multilingual translation model with multiple target languages. A sentence initial language token is required in the form of >>id<< (id = valid target language ID), e.g. >>afb<<

Usage

A short example code:

from transformers import MarianMTModel, MarianTokenizer

src_text = [
    ">>ara<< I can't help you because I'm busy.",
    ">>ara<< I have to write a letter. Do you have some paper?"
]

model_name = "pytorch-models/opus-mt-tc-big-en-ar"
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:
#     لا أستطيع مساعدتك لأنني مشغول.
#     يجب أن أكتب رسالة هل لديك بعض الأوراق؟

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-ar")
print(pipe(">>ara<< I can't help you because I'm busy."))

# expected output: لا أستطيع مساعدتك لأنني مشغول.

Benchmarks

  • test set translations: opusTCv20210807+bt_transformer-big_2022-02-25.test.txt
  • test set scores: opusTCv20210807+bt_transformer-big_2022-02-25.eval.txt
  • benchmark results: benchmark_results.txt
  • benchmark output: benchmark_translations.zip
langpair testset chr-F BLEU #sent #words
eng-ara tatoeba-test-v2021-08-07 0.48813 19.8 10305 61356
eng-ara flores101-devtest 0.61154 29.4 1012 21357
eng-ara tico19-test 0.60075 30.0 2100 51339

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 16:37:31 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:037e2fe62ceb9b7796cc2bea082efe2392e137f9&dn=Helsinki-NLP_opus-mt-tc-big-en-ar

Open magnet in torrent client · infohash 037e2fe62ceb9b7796cc2bea082efe2392e137f9

Files & hashes

PathSizesha1sha256
README.md6.5 KB (6,679 B)34fb008058b73bab707a7aeb218529104eaa55120083e6bca19b410ef4adea754f5fcef99c3e9e139521cfbb3bc0a714f4363752
benchmark_results.txt475 B (475 B)4a2dc386ad78189124b2c3f3bd692d4b4cf6efb76ae42fdb937868b09db002619d2190b3b0c418ed79355a2af9d342505ccba38f
benchmark_translations.zip2.0 MB (2,110,100 B)b9851ba03652caac403c8b19038194cf8f1a6d8e1285375ccee419aa268dec1b666e164c869e7c59dfe264e0bab4d684777c0dae
config.json1.1 KB (1,076 B)5f7af086c4ad7086ee3b0219e8f166ee09917cc059aad45c9503689da0452350d436a4c2e18785e02c5f84af0e28951280403170
generation_config.json301 B (301 B)a7abd94489306ed2d5ce255d29b3fc61a80cf8be5dbf2995c8d097c286a6b739b0b14cf14bf72eff95df61ccf5ba63b65ed33b27
model.safetensors456.1 MB (478,300,630 B)329509663c8c749dd16c65af09ef3f28e99bc3a89c4fb5fba22fc64947213c1adc0c9ac7f018cda71a466eea08231054eecf9851
pytorch_model.bin456.2 MB (478,357,637 B)38edd4a11894bd985951a5be5323567ed0ad2687b6fc86f54d0ae5cea6773dfe7dd4474e2eddf331a4e21fadd02b6b76d4ca1fca
source.spm787.2 KB (806,127 B)d0eab48c3ed4eebbcf45f1a8ea34439b66ce63570a9b220e324e29d4fbab530747ab82968a79d5408f1b3210f0f6d812d148b7d2
special_tokens_map.json65 B (65 B)6dc4d430ddbd24171268d73da061ce9f0b09291109059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4
target.spm894.9 KB (916,373 B)2653fddea76e51557381ef6c7b9ea95d5a59f600db09c46631638384f2b13ccdececb1c88103f0e59c14d5def247975007e7eaac
tokenizer_config.json337 B (337 B)18c0bc4ec1d31aa92ec51d2f283bf52081d6db42bede94e52f918d26060d5fd8c050d0a502042f8107928bb88b5c3e46b1c3661b
vocab.json2.1 MB (2,205,111 B)f63074458f8d02c7db0ac67bf0ef2cad4f4a2950960481e296cda090df4cd16f1917984ae128c3faded421927c2ad295fdf5dd69

Cite this release

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

Provenance

Upstream repositoryHelsinki-NLP/opus-mt-tc-big-en-ar
Revision (pinned)ae9f1b2fd512000ca9440eb3b8ec9aa9acb298ac
Fetched at2026-09-02T03:13:38Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T03:13:50Z

cc-by-4.0918.1 MB (962,704,911 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcmodel-indexendpoints_compatible3 languages (tf, ar, en)