cross-encoder_mmarco-mMiniLMv2-L12-H384-v1
cross-encoder · View on Hugging Face ↗
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.
license: apache-2.0 language:
- en
- ar
- zh
- nl
- fr
- de
- hi
- in
- it
- ja
- pt
- ru
- es
- vi
- multilingual datasets:
- unicamp-dl/mmarco base_model:
- nreimers/mMiniLMv2-L12-H384-distilled-from-XLMR-Large pipeline_tag: text-ranking library_name: sentence-transformers tags:
- transformers
Cross-Encoder for multilingual MS Marco
This model was trained on the MMARCO dataset. It is a machine translated version of MS MARCO using Google Translate. It was translated to 14 languages. In our experiments, we observed that it performs also well for other languages.
As a base model, we used the multilingual MiniLMv2 model.
The model can be used for Information Retrieval: Given a query, encode the query will all possible passages (e.g. retrieved with ElasticSearch). Then sort the passages in a decreasing order. See SBERT.net Retrieve & Re-rank for more details. The training code is available here: SBERT.net Training MS Marco
Usage with SentenceTransformers
The usage becomes easy when you have SentenceTransformers installed. Then, you can use the pre-trained models like this:
from sentence_transformers import CrossEncoder
model = CrossEncoder('model_name')
scores = model.predict([('Query', 'Paragraph1'), ('Query', 'Paragraph2') , ('Query', 'Paragraph3')])
Usage with Transformers
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
model = AutoModelForSequenceClassification.from_pretrained('model_name')
tokenizer = AutoTokenizer.from_pretrained('model_name')
features = tokenizer(['How many people live in Berlin?', 'How many people live in Berlin?'], ['Berlin has a population of 3,520,031 registered inhabitants in an area of 891.82 square kilometers.', 'New York City is famous for the Metropolitan Museum of Art.'], padding=True, truncation=True, return_tensors="pt")
model.eval()
with torch.no_grad():
scores = model(**features).logits
print(scores)
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:f2ce6e44a313e86495218c21ffc98581f22475dc&dn=cross-encoder_mmarco-mMiniLMv2-L12-H384-v1Open magnet in torrent client · infohash f2ce6e44a313e86495218c21ffc98581f22475dc
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 2.2 KB (2,278 B) | c0f626ab888d9512bc57b224b13ff97ca93e3cb0 | 474736a65d6393a060119a8dc304563af67af4d8d86ccfee4a05dd0df107fc11 |
| config.json | 891 B (891 B) | 43ac97f1bef372d4f1d30a32f9a84baffcf6575d | cc2cfe51aa3fd759d21d21acf5dfd6994aa67a3c9210636d22e143699d336c77 |
| model.safetensors | 448.8 MB (470,592,698 B) | 2a25e44ffc997d5c2871595147e584416d6a4c6b | 5daeca2481a76b5976a2bdc32f0a78532b6716da4f8cd3ff59460ef8d2f359b4 |
| openvino/openvino_model.bin | 448.8 MB (470,568,628 B) | 1369e48a208e4680b369c2d8df04aebe4069d9fd | 3b00b3db7a1a0d53c64b459e81900c1dfa7fd34c253556e4cc9b862fcd356c10 |
| openvino/openvino_model.xml | 380.9 KB (390,077 B) | 3ddec1bba82aa2a007851ac50f38c4cb6d91bcac | 9520576129e75237d6f5b5b7236e81793481aadb907bb9ef1624840b9f1296b4 |
| openvino/openvino_model_qint8_quantized.bin | 113.6 MB (119,130,716 B) | 15aa5ab546ca3ae7c08500ad8b244119a9e820d8 | 2911002d538ad8ea038cf554cb391b6f96fa65ba0ea524214ccf884d6ae28120 |
| openvino/openvino_model_qint8_quantized.xml | 695.1 KB (711,814 B) | 0c9edd733330b774d215843e2767bd2d48836b31 | 43356597a6dc0ceae2b0ab5e17836eef41157f5b558ff02aff730a23c92f14b9 |
| pytorch_model.bin | 448.8 MB (470,633,197 B) | ac299b2892556201ce03dda71c9155c8c544e512 | 1abc209e54d70bbcb08c1b5111a924fb99c0428f51cab1659310ccdcab69dc03 |
| sentencepiece.bpe.model | 4.8 MB (5,069,051 B) | 7e88c49faff6c6c136fdf4a3402d0cb534c6ab10 | cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865 |
| special_tokens_map.json | 239 B (239 B) | 2ea7ad0e45a9d1d1591782ba7e29a703d0758831 | 378eb3bf733eb16e65792d7e3fda5b8a4631387ca04d2015199c4d4f22ae554d |
| tokenizer.json | 16.3 MB (17,082,660 B) | f1b7328c4ae47af6c9f66899be79455688da5c74 | 62c24cdc13d4c9952d63718d6c9fa4c287974249e16b7ade6d5a85e7bbb75626 |
| tokenizer_config.json | 435 B (435 B) | b59159d44c6bd4b1d9f7ae4f8da028da4238e06e | e7fbfbfa6347b4e414c1cee50d142e2c2f9a895dad68b068ae83a8b564c3837e |
| train_script.py | 12.0 KB (12,245 B) | 541d6303b1f60df3e81df5bd714d7cb25787009d | b1791fe967990d8df82107f1171fb299e29427fc021d03d7604f96a293aff18c |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/cross-encoder_mmarco-mMiniLMv2-L12-H384-v1/
- Slug
- cross-encoder_mmarco-mMiniLMv2-L12-H384-v1
- Infohash
- f2ce6e44a313e86495218c21ffc98581f22475dc
- License
- apache-2.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: cross-encoder_mmarco-mMiniLMv2-L12-H384-v1.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | cross-encoder/mmarco-mMiniLMv2-L12-H384-v1 |
|---|---|
| Revision (pinned) | 1427fd652930e4ba29e8149678df786c240d8825 |
| Fetched at | 2026-09-03T21:24:21Z |
| License at fetch | apache-2.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-03T21:24:38Z
apache-2.01.45 GB (1,554,194,929 bytes)sentence-transformerspytorchonnxsafetensorsopenvinoxlm-robertatext-classificationtransformerstext-rankingmultilingualtext-embeddings-inferenceendpoints_compatible14 languages (en, ar, zh …)