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

← All models

sentence-transformers_paraphrase-MiniLM-L3-v2

sentence-transformers · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

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 library_name: sentence-transformers tags:

  • sentence-transformers
  • feature-extraction
  • sentence-similarity
  • transformers datasets:
  • flax-sentence-embeddings/stackexchange_xml
  • s2orc
  • ms_marco
  • wiki_atomic_edits
  • snli
  • multi_nli
  • embedding-data/altlex
  • embedding-data/simple-wiki
  • embedding-data/flickr30k-captions
  • embedding-data/coco_captions
  • embedding-data/sentence-compression
  • embedding-data/QQP
  • yahoo_answers_topics pipeline_tag: sentence-similarity

sentence-transformers/paraphrase-MiniLM-L3-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-MiniLM-L3-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-MiniLM-L3-v2')
model = AutoModel.from_pretrained('sentence-transformers/paraphrase-MiniLM-L3-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:66105495f40837abd01aef71e37cbf3a506cfcfb&dn=sentence-transformers_paraphrase-MiniLM-L3-v2

Open magnet in torrent client · infohash 66105495f40837abd01aef71e37cbf3a506cfcfb

Files & hashes

PathSizesha1sha256
1_Pooling/config.json190 B (190 B)d1514c3162bbe87b343f565fadc62e6c06f04f034be450dde3b0273bb9787637cfbd28fe04a7ba6ab9d36ac48e92b11e350ffc23
README.md3.7 KB (3,828 B)b9f78191d2c14d2658113d2ba8b535904f570322367a3b024bae0609cd4c9c355d4ef968a974c03d9bde297550508472e5dc0db9
config.json629 B (629 B)21fe4c8407a8590691de0db6c158e8353b7cd1ccfc00f0ca1c3380f17937a4050908dd2cf743c36bebe437cf448b8aa4e7ddfe4d
config_sentence_transformers.json122 B (122 B)b974b349cb2d419ada11181750a733ff82f291adb8c64b5cece00d8424b4896ea75b512b6008576088497609dfeb6bd63e6d36b8
model.safetensors66.3 MB (69,569,488 B)bbcef9f91b1f85b9d5e3272bd7e945e64db02387cf1e4e2d420c664973037c3c73125d7a8fc69952495093ef8f50596f8943a433
modules.json229 B (229 B)f7640f94e81bb7f4f04daf1668850b38763a13d98f4b264b80206c830bebbdcae377e137925650a433b689343a63bdc9b3145460
openvino/openvino_model.bin65.8 MB (68,972,176 B)86be0d08c57bc6af9c832d8f687d41fd4588e29c75e687f460e455400b70da4f63ebff1c9adc428053c870719d773aeaca268dfd
openvino/openvino_model.xml115.5 KB (118,237 B)b0c316ac09ea7c8c17fc7604f47a4bd70fbf999b67cd9c44467575dd2c50971c8f33bdc0e2779c6359fb5a2fc220ec0d7195ada6
openvino/openvino_model_qint8_quantized.bin16.7 MB (17,491,472 B)76e7b3295ed0868a150daab92790cf3580736421fb8f0df8d31765edefe2f8ed6176839519e74ba3674aeea3e79b127269af4b68
openvino/openvino_model_qint8_quantized.xml194.6 KB (199,274 B)15cea92c7b03c1b4acfb3bf15448bba0bba91ed18df50cea797bf2a2c61931dabb36b5502cc7b5d0c2b125b6d07fec50c79ad905
pytorch_model.bin66.4 MB (69,583,549 B)13c8d3d48c4096796466c967545748e039b5aa3d6b0a1c48c2490f85381505b1d7c7327d0c4dc31c285880f37715a71514f5dd6c
sentence_bert_config.json53 B (53 B)5fd10429389515d3e5cccdeda08cae5fea1ae82e70f4448f31320443fe3557cacea5abf2dcc4915dda8c80646bec9f3bb0aa5a1f
special_tokens_map.json112 B (112 B)e7b0375001f109a6b8873d756ad4f7bbb15fbaa5303df45a03609e4ead04bc3dc1536d0ab19b5358db685b6f3da123d05ec200e3
tokenizer.json455.3 KB (466,248 B)13a88ab79464a6da029fce1e5be0c663cf988234a9576e4dadfe7f78f071a1c00ba6902cc83ec6ed7e9b590ee974950bd4d54393
tokenizer_config.json314 B (314 B)f53a878d06b91bcc80130610374f70fbf86c3c3dbebb08142e831e77fd87b6fac54626c2ca527ad27203e9de5e787f1e8063608b
vocab.txt226.1 KB (231,508 B)fb140275c155a9c7c5a3b3e0e77a9e839594a93807eced375cec144d27c900241f3e339478dec958f92fddbc551f295c992038a3

Cite this release

Canonical URL
https://aiseedbank.org/models/sentence-transformers_paraphrase-MiniLM-L3-v2/
Slug
sentence-transformers_paraphrase-MiniLM-L3-v2
Infohash
66105495f40837abd01aef71e37cbf3a506cfcfb
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-MiniLM-L3-v2.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorysentence-transformers/paraphrase-MiniLM-L3-v2
Revision (pinned)4ca70771034acceecb2e72475f72050fcdde4ddc
Fetched at2026-09-04T05:38:12Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T05:38:16Z

apache-2.0216.1 MB (226,637,429 bytes)sentence-transformerspytorchonnxsafetensorsopenvinobertfeature-extractionsentence-similaritytransformerstext-embeddings-inferenceendpoints_compatible1 language (tf)paper: 1908.10084