sentence-transformers_paraphrase-multilingual-MiniLM-L12-v2
sentence-transformers · 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.
language:
- multilingual
- ar
- bg
- ca
- cs
- da
- de
- el
- en
- es
- et
- fa
- fi
- fr
- gl
- gu
- he
- hi
- hr
- hu
- hy
- id
- it
- ja
- ka
- ko
- ku
- lt
- lv
- mk
- mn
- mr
- ms
- my
- nb
- nl
- pl
- pt
- ro
- ru
- sk
- sl
- sq
- sr
- sv
- th
- tr
- uk
- ur
- vi license: apache-2.0 library_name: sentence-transformers tags:
- sentence-transformers
- feature-extraction
- sentence-similarity
- transformers language_bcp47:
- fr-ca
- pt-br
- zh-cn
- zh-tw pipeline_tag: sentence-similarity
sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
This is a sentence-transformers model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search.
Usage (Sentence-Transformers)
Using this model becomes easy when you have sentence-transformers installed:
pip install -U sentence-transformers
Then you can use the model like this:
from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]
model = SentenceTransformer('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2')
embeddings = model.encode(sentences)
print(embeddings)
Usage (HuggingFace Transformers)
Without sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
from transformers import AutoTokenizer, AutoModel
import torch
# Mean Pooling - Take attention mask into account for correct averaging
def mean_pooling(model_output, attention_mask):
token_embeddings = model_output[0] #First element of model_output contains all token embeddings
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
# Sentences we want sentence embeddings for
sentences = ['This is an example sentence', 'Each sentence is converted']
# Load model from HuggingFace Hub
tokenizer = AutoTokenizer.from_pretrained('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2')
model = AutoModel.from_pretrained('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2')
# Tokenize sentences
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
# Compute token embeddings
with torch.no_grad():
model_output = model(**encoded_input)
# Perform pooling. In this case, max pooling.
sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
print("Sentence embeddings:")
print(sentence_embeddings)
Full Model Architecture
SentenceTransformer(
(0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)
Citing & Authors
This model was trained by sentence-transformers.
If you find this model helpful, feel free to cite our publication Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks:
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "http://arxiv.org/abs/1908.10084",
}
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:f5fc4e0b7735648689768f79023737e7b55e3112&dn=sentence-transformers_paraphrase-multilingual-MiniLM-L12-v2Open magnet in torrent client · infohash f5fc4e0b7735648689768f79023737e7b55e3112
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| 1_Pooling/config.json | 190 B (190 B) | d1514c3162bbe87b343f565fadc62e6c06f04f03 | 4be450dde3b0273bb9787637cfbd28fe04a7ba6ab9d36ac48e92b11e350ffc23 |
| README.md | 3.8 KB (3,888 B) | 6bedb7f3622d56b7020f33ab93f6996d33242043 | 1e98ea05b0de579fcaad3d625b62ea55647142ed674d5f5ebf1440e4bbbb6f23 |
| config.json | 645 B (645 B) | c06d5b49495f044e6380e68a60538be17a6bd5d1 | 6300193cb75e01cf80c96decef7187dfb33094d97cc1490b7ead6ff134476e4e |
| config_sentence_transformers.json | 122 B (122 B) | b974b349cb2d419ada11181750a733ff82f291ad | b8c64b5cece00d8424b4896ea75b512b6008576088497609dfeb6bd63e6d36b8 |
| model.safetensors | 448.8 MB (470,641,600 B) | 75dc5fb549e69d65332d1537396bf891c4978a2c | eaa086f0ffee582aeb45b36e34cdd1fe2d6de2bef61f8a559a1bbc9bd955917b |
| modules.json | 229 B (229 B) | f7640f94e81bb7f4f04daf1668850b38763a13d9 | 8f4b264b80206c830bebbdcae377e137925650a433b689343a63bdc9b3145460 |
| openvino/openvino_model.bin | 448.3 MB (470,027,920 B) | 4348704131956c428b3b11e112705db663d07279 | 04e8cc4ceedb65316f374f798b9428b491281e064b4cb6076e6abf0221256ac1 |
| openvino/openvino_model.xml | 389.2 KB (398,501 B) | 5e34ccc5b60aa53a44488b75b78c5d4f9c0b7cc2 | 4be6bbe73e4b562ac249cbc4f8d21b15d7925032f18f9f1a044407ef25ed6b14 |
| openvino/openvino_model_qint8_quantized.bin | 113.5 MB (118,989,868 B) | 7ea96a34d1a70eafd24e0e58a5d477d5a1f317e2 | 24acd56a5f5ae4ba5b39c9593997ebb6d5da44a6439ef1d0757a70c70aadb7e3 |
| openvino/openvino_model_qint8_quantized.xml | 692.2 KB (708,844 B) | d4c56fb65c7171dc9c41c17f556ec5d51f219416 | bf8073798246ce658b6717c7a9afd82783e30a6c91e63ef8d2cd3791ceac123c |
| pytorch_model.bin | 448.9 MB (470,693,617 B) | d961d948a8a6e70494404c9e440f6d61f5743f84 | 16cc9e54df6e083272378abec2d75dc34d7a48b5276db3ccc050d18de672ac59 |
| sentence_bert_config.json | 53 B (53 B) | 5fd10429389515d3e5cccdeda08cae5fea1ae82e | 70f4448f31320443fe3557cacea5abf2dcc4915dda8c80646bec9f3bb0aa5a1f |
| sentencepiece.bpe.model | 4.8 MB (5,069,051 B) | 7e88c49faff6c6c136fdf4a3402d0cb534c6ab10 | cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865 |
| special_tokens_map.json | 239 B (239 B) | 2ea7ad0e45a9d1d1591782ba7e29a703d0758831 | 378eb3bf733eb16e65792d7e3fda5b8a4631387ca04d2015199c4d4f22ae554d |
| tokenizer.json | 8.7 MB (9,081,518 B) | 17b851bfbf6cc98e8211a4c3fde00a3de732d3bf | 2c3387be76557bd40970cec13153b3bbf80407865484b209e655e5e4729076b8 |
| tokenizer_config.json | 526 B (526 B) | 3c1b565ae10a15a1d0c31096f834af2fd9359e91 | 5036ea374ffedd706e3bef33e2e0d6953cb868ef8a490e76e32ba0faa37a6b9b |
| unigram.json | 14.1 MB (14,763,234 B) | da10d1e781da3b6dfeb1d2118f86b28bbfabba23 | 71b44701d7efd054205115acfa6ef126c5d2f84bd3affe0c59e48163674d19a6 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/sentence-transformers_paraphrase-multilingual-MiniLM-L12-v2/
- Slug
- sentence-transformers_paraphrase-multilingual-MiniLM-L12-v2
- Infohash
- f5fc4e0b7735648689768f79023737e7b55e3112
- License
- apache-2.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: sentence-transformers_paraphrase-multilingual-MiniLM-L12-v2.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2 |
|---|---|
| Revision (pinned) | e8f8c211226b894fcb81acc59f3b34ba3efd5f42 |
| Fetched at | 2026-09-04T05:38:37Z |
| 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-04T05:38:54Z
apache-2.01.45 GB (1,560,380,045 bytes)sentence-transformerspytorchonnxsafetensorsopenvinobertfeature-extractionsentence-similaritytransformersmultilingualtext-embeddings-inferenceendpoints_compatible50 languages (tf, ar, bg …)paper: 1908.10084