Helsinki-NLP_opus-mt-tc-big-sh-en
Helsinki-NLP · View on Hugging Face ↗
Get this model
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:
- bs_Latn
- en
- hr
- sh
- sr_Cyrl
- sr_Latn tags:
- translation
- opus-mt-tc license: cc-by-4.0 model-index:
- name: opus-mt-tc-big-sh-en
results:
- task:
name: Translation hrv-eng
type: translation
args: hrv-eng
dataset:
name: flores101-devtest
type: flores_101
args: hrv eng devtest
metrics:
- name: BLEU type: bleu value: 37.1
- task:
name: Translation bos_Latn-eng
type: translation
args: bos_Latn-eng
dataset:
name: tatoeba-test-v2021-08-07
type: tatoeba_mt
args: bos_Latn-eng
metrics:
- name: BLEU type: bleu value: 66.5
- task:
name: Translation hbs-eng
type: translation
args: hbs-eng
dataset:
name: tatoeba-test-v2021-08-07
type: tatoeba_mt
args: hbs-eng
metrics:
- name: BLEU type: bleu value: 56.4
- task:
name: Translation hrv-eng
type: translation
args: hrv-eng
dataset:
name: tatoeba-test-v2021-08-07
type: tatoeba_mt
args: hrv-eng
metrics:
- name: BLEU type: bleu value: 58.8
- task:
name: Translation srp_Cyrl-eng
type: translation
args: srp_Cyrl-eng
dataset:
name: tatoeba-test-v2021-08-07
type: tatoeba_mt
args: srp_Cyrl-eng
metrics:
- name: BLEU type: bleu value: 44.7
- task:
name: Translation srp_Latn-eng
type: translation
args: srp_Latn-eng
dataset:
name: tatoeba-test-v2021-08-07
type: tatoeba_mt
args: srp_Latn-eng
metrics:
- name: BLEU type: bleu value: 58.4
- task:
name: Translation hrv-eng
type: translation
args: hrv-eng
dataset:
name: flores101-devtest
type: flores_101
args: hrv eng devtest
metrics:
opus-mt-tc-big-sh-en
Neural machine translation model for translating from Serbo-Croatian (sh) 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: 2022-02-25
- source language(s): bos_Latn hrv srp_Cyrl srp_Latn
- target language(s): eng
- 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 hbs-eng README
Usage
A short example code:
from transformers import MarianMTModel, MarianTokenizer
src_text = [
"Ispostavilo se da je istina.",
"Ovaj vikend imamo besplatne pozive."
]
model_name = "pytorch-models/opus-mt-tc-big-sh-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) )
# expected output:
# Turns out it's true.
# We got free calls this weekend.
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-sh-en")
print(pipe("Ispostavilo se da je istina."))
# expected output: Turns out it's true.
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 |
|---|---|---|---|---|---|
| bos_Latn-eng | tatoeba-test-v2021-08-07 | 0.80010 | 66.5 | 301 | 1826 |
| hbs-eng | tatoeba-test-v2021-08-07 | 0.71744 | 56.4 | 10017 | 68934 |
| hrv-eng | tatoeba-test-v2021-08-07 | 0.73563 | 58.8 | 1480 | 10620 |
| srp_Cyrl-eng | tatoeba-test-v2021-08-07 | 0.68248 | 44.7 | 1580 | 10181 |
| srp_Latn-eng | tatoeba-test-v2021-08-07 | 0.71781 | 58.4 | 6656 | 46307 |
| hrv-eng | flores101-devtest | 0.63948 | 37.1 | 1012 | 24721 |
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 19:21:10 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:47d482a3ec86700f9d5679ede16871c7b3232f7d&dn=Helsinki-NLP_opus-mt-tc-big-sh-enOpen magnet in torrent client · infohash 47d482a3ec86700f9d5679ede16871c7b3232f7d
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 7.1 KB (7,269 B) | fa322af24eb396d19190775ed574f00e4029e4a6 | a0326ae4a3c0ae7cbe9660e3b9d95a2fff7305c23f07a02fde870612737e1b57 |
| benchmark_results.txt | 992 B (992 B) | 5e1992d4ffeb0944d6fc586a3df1d1c46648bc02 | cf59ec47c9d91f4a16a2631f866f023f6ece20d5dc576fd2c621962a56ead7fa |
| benchmark_translations.zip | 2.1 MB (2,210,970 B) | 683c516b36ebe1f00afa9c22fbbc808f0bb39a05 | c71bfadcb9da2a129195fab777dad08b24903db4fdcab995ca9733287a6ee102 |
| config.json | 1.1 KB (1,076 B) | 0f1fc6994bee9fd9886b768ec1642dc9e9dd4c3c | 4df08c25f4d574f44f1840f12aef50508d003145116ac78a6f437537691a08bb |
| generation_config.json | 301 B (301 B) | 9dc6ffe19aa45ad4f5863b055cb2ebbb6b3da350 | 104795b48589ba5bf7c728f5383818b545656007455743048fcedcd55ca71c5d |
| model.safetensors | 451.6 MB (473,536,430 B) | a73a959c6208797f50f8ecb80bc599deea0f5b0b | ada73c8f3270259dd3d25ddaccadf91a08f383832ea38e4c861cfdc598f4cef9 |
| pytorch_model.bin | 451.7 MB (473,593,413 B) | 79a19b99d5a15d0d41ac99096447f61191b4cbd4 | 1d3ea4005e43030536d5f06343fcd1f00263d48ac578b183d953ef8e0697d2ed |
| source.spm | 828.6 KB (848,531 B) | 4d1605b81663ada01e04ad191035ad35ccd9f730 | 04edd3b1ef274a674fad5bd278165e20db3b9190af3ed93ecc208546fc18c813 |
| special_tokens_map.json | 65 B (65 B) | 6dc4d430ddbd24171268d73da061ce9f0b092911 | 09059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4 |
| target.spm | 775.6 KB (794,188 B) | 5a78768ee684bc347f0d46c82a8af6089598ac6d | f8162fb45022dc045c39eccfc02274ce988336f531a38eb3c892bd95692d7ae5 |
| tokenizer_config.json | 337 B (337 B) | ea3fb734f2dfa509a8a2898fa434c36d8785da87 | 3dfaa5d8970c82bbda1597da8de4b2c0f442a839ec54871f77f60470071d9fa6 |
| vocab.json | 1.6 MB (1,695,406 B) | b7ecd4a1049088dae4dacacfd4b58e5fd8d69194 | e9db3457aaab88b521ca51abe12f60078708d25b37a1bb601c69f4f68b2575a1 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/Helsinki-NLP_opus-mt-tc-big-sh-en/
- Slug
- Helsinki-NLP_opus-mt-tc-big-sh-en
- Infohash
- 47d482a3ec86700f9d5679ede16871c7b3232f7d
- 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-sh-en.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | Helsinki-NLP/opus-mt-tc-big-sh-en |
|---|---|
| Revision (pinned) | 94d3197eab7df79725c8e7f59d23895092d39210 |
| Fetched at | 2026-09-02T03:16:19Z |
| License at fetch | cc-by-4.0 |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-02T03:16:30Z
cc-by-4.0908.6 MB (952,688,978 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcbigmodel-indexendpoints_compatible4 languages (tf, tc, sh …)