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

← All models

sentence-transformers_msmarco-MiniLM-L6-v3

sentence-transformers · 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.


license: apache-2.0 library_name: sentence-transformers tags:

  • sentence-transformers
  • feature-extraction
  • sentence-similarity
  • transformers pipeline_tag: sentence-similarity

sentence-transformers/msmarco-MiniLM-L6-v3

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/msmarco-MiniLM-L6-v3')
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/msmarco-MiniLM-L6-v3')
model = AutoModel.from_pretrained('sentence-transformers/msmarco-MiniLM-L6-v3')

# 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': 512, '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:fb036d7273db70eae1139c77bd06fdaed94d6f48&dn=sentence-transformers_msmarco-MiniLM-L6-v3

Open magnet in torrent client · infohash fb036d7273db70eae1139c77bd06fdaed94d6f48

Files & hashes

PathSizesha1sha256
1_Pooling/config.json190 B (190 B)d1514c3162bbe87b343f565fadc62e6c06f04f034be450dde3b0273bb9787637cfbd28fe04a7ba6ab9d36ac48e92b11e350ffc23
README.md3.4 KB (3,501 B)b55fa3c43d6205d49013a36d896ea5331749f4d863225b7f215b800af39e01e35ee2de3eee4b9d8603c098bb0e8bcc8c68d9e879
config.json627 B (627 B)71f542affdfa150c6a23db1a0af6b92934a9476d76a2cb193ea961595167d17433fe921fa46f07517120a62437cf8f40f7abb778
config_sentence_transformers.json122 B (122 B)b974b349cb2d419ada11181750a733ff82f291adb8c64b5cece00d8424b4896ea75b512b6008576088497609dfeb6bd63e6d36b8
model.safetensors86.7 MB (90,868,376 B)f7cd05817399c959b508573a0c596b33776fc0dd44d07b17c326e86f6e1af597e1f6e04d44232f18cf46be1aaaf9dacdabf5b1ed
modules.json229 B (229 B)f7640f94e81bb7f4f04daf1668850b38763a13d98f4b264b80206c830bebbdcae377e137925650a433b689343a63bdc9b3145460
openvino/openvino_model.bin86.1 MB (90,265,744 B)04777fca9f558930e329ab2761f5cd27d4e155a81dfea90336af59564351015c7818ab9c552919f93bee8fa8dcee430e3bb7e30c
openvino/openvino_model.xml206.5 KB (211,442 B)6a5895bbfa2f880e2110ba368ee23b6ba5ac95d178f97443baff5507b7924e7133ade132b09ecd1a485e9bf7d0c4c9a2c0066545
openvino/openvino_model_qint8_quantized.bin21.9 MB (22,933,664 B)2ddfeceb5bb4775338831a9e9c1ca875d46b15eba23cbdb861ded4c9f1c2b90377dcf39a90374adc66ad4f28707aee4b8e963d04
openvino/openvino_model_qint8_quantized.xml359.7 KB (368,367 B)cde614333f221a0860e1bf01182569b7e001b0adb834810f552ee7ee73ae3c1a0a725b9ae2a119f2d08a4c8ee687071c6a0e2b06
pytorch_model.bin86.7 MB (90,895,153 B)c2a32c96192affd88325ada75ee2ccfacf4b92675e3a29b2fc7bce0f6b0bdd35dcd6e6d1c1dd5fc191561d0b9c5d3aadf3891e0b
sentence_bert_config.json53 B (53 B)f789d99277496b282d19020415c5ba9ca79ac875ec8e29d6dcb61b611b7d3fdd2982c4524e6ad985959fa7194eacfb655a8d0d51
special_tokens_map.json112 B (112 B)e7b0375001f109a6b8873d756ad4f7bbb15fbaa5303df45a03609e4ead04bc3dc1536d0ab19b5358db685b6f3da123d05ec200e3
tokenizer.json455.2 KB (466,081 B)40c4a0f6c414c8218190234bbce9bf4cc04fa3ac5fd1c882abbd30517dced455a2c9768945ec726b96727927e4959348d9de550b
tokenizer_config.json430 B (430 B)28752a141c70efafeefaea9af585cd5265ae361ff6c1ce9e670deb8f8de3ffb61f43dc410caf681ce952c9572bc212968449918c
vocab.txt226.1 KB (231,508 B)fb140275c155a9c7c5a3b3e0e77a9e839594a93807eced375cec144d27c900241f3e339478dec958f92fddbc551f295c992038a3

Cite this release

Canonical URL
https://aiseedbank.org/models/sentence-transformers_msmarco-MiniLM-L6-v3/
Slug
sentence-transformers_msmarco-MiniLM-L6-v3
Infohash
fb036d7273db70eae1139c77bd06fdaed94d6f48
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: sentence-transformers_msmarco-MiniLM-L6-v3.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorysentence-transformers/msmarco-MiniLM-L6-v3
Revision (pinned)fea93b3df3924e5649a4e322c345f951239d2c13
Fetched at2026-09-02T04:43:12Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:43:18Z

apache-2.0282.5 MB (296,245,599 bytes)sentence-transformerspytorchjaxonnxsafetensorsopenvinobertfeature-extractionsentence-similaritytransformerstext-embeddings-inferenceendpoints_compatible1 language (tf)paper: 1908.10084