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

← All models

Helsinki-NLP_opus-mt-tc-big-gmq-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:

  • da
  • en
  • fo
  • gmq
  • is
  • nb
  • nn
  • false
  • sv tags:
  • translation
  • opus-mt-tc license: cc-by-4.0 model-index:
  • name: opus-mt-tc-big-gmq-en results:
    • task: name: Translation dan-eng type: translation args: dan-eng dataset: name: flores101-devtest type: flores_101 args: dan eng devtest metrics:
      • name: BLEU type: bleu value: 49.3
    • task: name: Translation isl-eng type: translation args: isl-eng dataset: name: flores101-devtest type: flores_101 args: isl eng devtest metrics:
      • name: BLEU type: bleu value: 34.2
    • task: name: Translation nob-eng type: translation args: nob-eng dataset: name: flores101-devtest type: flores_101 args: nob eng devtest metrics:
      • name: BLEU type: bleu value: 44.2
    • task: name: Translation swe-eng type: translation args: swe-eng dataset: name: flores101-devtest type: flores_101 args: swe eng devtest metrics:
      • name: BLEU type: bleu value: 49.8
    • task: name: Translation isl-eng type: translation args: isl-eng dataset: name: newsdev2021.is-en type: newsdev2021.is-en args: isl-eng metrics:
      • name: BLEU type: bleu value: 30.4
    • task: name: Translation dan-eng type: translation args: dan-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: dan-eng metrics:
      • name: BLEU type: bleu value: 65.9
    • task: name: Translation fao-eng type: translation args: fao-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: fao-eng metrics:
      • name: BLEU type: bleu value: 30.1
    • task: name: Translation isl-eng type: translation args: isl-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: isl-eng metrics:
      • name: BLEU type: bleu value: 53.3
    • task: name: Translation nno-eng type: translation args: nno-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: nno-eng metrics:
      • name: BLEU type: bleu value: 56.1
    • task: name: Translation nob-eng type: translation args: nob-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: nob-eng metrics:
      • name: BLEU type: bleu value: 60.2
    • task: name: Translation swe-eng type: translation args: swe-eng dataset: name: tatoeba-test-v2021-08-07 type: tatoeba_mt args: swe-eng metrics:
      • name: BLEU type: bleu value: 66.4
    • task: name: Translation isl-eng type: translation args: isl-eng dataset: name: newstest2021.is-en type: wmt-2021-news args: isl-eng metrics:
      • name: BLEU type: bleu value: 34.4

opus-mt-tc-big-gmq-en

Neural machine translation model for translating from North Germanic languages (gmq) 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-03-09
  • source language(s): dan fao isl nno nob nor swe
  • target language(s): eng
  • 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 gmq-eng README

Usage

A short example code:

from transformers import MarianMTModel, MarianTokenizer

src_text = [
    "Han var synligt nervøs.",
    "Inte ens Tom själv var övertygad."
]

model_name = "pytorch-models/opus-mt-tc-big-gmq-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:
#     He was visibly nervous.
#     Even Tom was not convinced.

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-gmq-en")
print(pipe("Han var synligt nervøs."))

# expected output: He was visibly nervous.

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
dan-eng tatoeba-test-v2021-08-07 0.78292 65.9 10795 79684
fao-eng tatoeba-test-v2021-08-07 0.47467 30.1 294 1984
isl-eng tatoeba-test-v2021-08-07 0.68346 53.3 2503 19788
nno-eng tatoeba-test-v2021-08-07 0.69788 56.1 460 3524
nob-eng tatoeba-test-v2021-08-07 0.73524 60.2 4539 36823
swe-eng tatoeba-test-v2021-08-07 0.77665 66.4 10362 68513
dan-eng flores101-devtest 0.72322 49.3 1012 24721
isl-eng flores101-devtest 0.59616 34.2 1012 24721
nob-eng flores101-devtest 0.68224 44.2 1012 24721
swe-eng flores101-devtest 0.72042 49.8 1012 24721
isl-eng newsdev2021.is-en 0.56709 30.4 2004 46383
isl-eng newstest2021.is-en 0.57756 34.4 1000 22529

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:13:11 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:6f4ad53a0a22150e8760c06d5e8bff07d137a352&dn=Helsinki-NLP_opus-mt-tc-big-gmq-en

Open magnet in torrent client · infohash 6f4ad53a0a22150e8760c06d5e8bff07d137a352

Files & hashes

PathSizesha1sha256
README.md8.9 KB (9,074 B)3e4cfa9d6ab9c29a86a0c55a891645bae22c2386f7f3d15cc25d83c9aac8cb47692121c9d0ad4a8a1e4d94b6c6127e9c536cc898
benchmark_results.txt1.5 KB (1,501 B)006b9ea2b1a464482abca1abf4a46e79a544db3c345a1367a3b90b0eb2d7ad1d06fd0c337905af217c8365360d2f7a20c427d44b
benchmark_translations.zip4.2 MB (4,420,129 B)f5b537bb04cfe758eafaf44f66ba48362b481b13cc2861a126af3f77c25c86112019a4e5f15003916f956af0bb40ab72de6da156
config.json1.1 KB (1,076 B)d30244f0e0bd0d64e25260f464b63bfcbae6ac091db6816a57bbf08c8d70f496d9e4286861c522c04cb522a37beb9914f486bd10
generation_config.json301 B (301 B)7723a1e05b34c865f6384d41b2cdfafb2580a5d09cb716c5798e3b715b1dbfeb4f26e24b7ada31aa24fd91b60a2af64cde024d53
model.safetensors443.5 MB (465,012,530 B)bb9602b764f0f605e50c9b53a16ffcf7b55f16351f80a083b4af716e1aa5bb6b278d6626e408874d62a6d4d5b31ab2147db8ee32
pytorch_model.bin443.5 MB (465,069,509 B)947fe8ac2b5db89991a09ee881a029048eee06bb54129587c4dd51a8866998f8dac6ff2917de4b938fd08225914c0124fecae703
source.spm781.0 KB (799,747 B)8ec22fef7759f94b810a5a254b698a1d6aca4f9a20dd2029ff0a4b6dd7b89442035d57fb03e9a9efbbd36543d5aae5e2aa866bad
special_tokens_map.json65 B (65 B)6dc4d430ddbd24171268d73da061ce9f0b09291109059cedc26bc46bc09a52f05b92d4922e11917e87f3b92059bb1a63a59ab2c4
target.spm777.3 KB (795,929 B)13b2c9836fe75637c3b9ab8dd2063cdf1ecd6c9ac51247265dd2c7773c3be3669b63c5152ce145baeb54a17975145309eb422cf2
tokenizer_config.json339 B (339 B)e8285d6f598a5a71dc9a12d4f6cda8e8809b54edcab63c1fcedd42449289eefcd9a597ce76d4cd17bb80ab6fe788893a48cfdf8e
vocab.json1.3 MB (1,340,611 B)15645239fa5a4327f60440ae8686149f4abfa45e8b7849db4c9ac7c8ba7f2ad83f298a505875ac586f55b75b1a158585fefccd0c

Cite this release

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

Provenance

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

Trackers

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

cc-by-4.0894.0 MB (937,450,811 bytes)transformerspytorchsafetensorsmariantext2text-generationtranslationopus-mt-tcbiggmqmodel-indexendpoints_compatible3 languages (tf, tc, en)