naver_splade-cocondenser-ensembledistil
naver · 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: cc-by-nc-sa-4.0 language: "en" tags:
- splade
- query-expansion
- document-expansion
- bag-of-words
- passage-retrieval
- knowledge-distillation
- sentence-transformers
- sparse-encoder
- sparse pipeline_tag: feature-extraction library_name: sentence-transformers datasets:
- ms_marco
SPLADE CoCondenser EnsembleDistil
SPLADE model for passage retrieval. For additional details, please visit:
- paper: https://arxiv.org/abs/2205.04733
- code: https://github.com/naver/splade
| MRR@10 (MS MARCO dev) | R@1000 (MS MARCO dev) | |
|---|---|---|
splade-cocondenser-ensembledistil |
38.3 | 98.3 |
Model Details
This is a SPLADE Sparse Encoder model. It maps sentences & paragraphs to a 30522-dimensional sparse vector space and can be used for semantic search and sparse retrieval.
Model Description
- Model Type: SPLADE Sparse Encoder
- Base model: Luyu/co-condenser-marco
- Maximum Sequence Length: 512 tokens (256 for evaluation reproduction)
- Output Dimensionality: 30522 dimensions
- Similarity Function: Dot Product
Full Model Architecture
SparseEncoder(
(0): MLMTransformer({'max_seq_length': 512, 'do_lower_case': False}) with MLMTransformer model: BertForMaskedLM
(1): SpladePooling({'pooling_strategy': 'max', 'activation_function': 'relu', 'word_embedding_dimension': 30522})
)
Usage
Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SparseEncoder
# Download from the 🤗 Hub
model = SparseEncoder("naver/splade-cocondenser-ensembledistil")
# Run inference
queries = ["what causes aging fast"]
documents = [
"UV-A light, specifically, is what mainly causes tanning, skin aging, and cataracts, UV-B causes sunburn, skin aging and skin cancer, and UV-C is the strongest, and therefore most effective at killing microorganisms. Again â\x80\x93 single words and multiple bullets.",
"Answers from Ronald Petersen, M.D. Yes, Alzheimer's disease usually worsens slowly. But its speed of progression varies, depending on a person's genetic makeup, environmental factors, age at diagnosis and other medical conditions. Still, anyone diagnosed with Alzheimer's whose symptoms seem to be progressing quickly â\x80\x94 or who experiences a sudden decline â\x80\x94 should see his or her doctor.",
"Bell's palsy and Extreme tiredness and Extreme fatigue (2 causes) Bell's palsy and Extreme tiredness and Hepatitis (2 causes) Bell's palsy and Extreme tiredness and Liver pain (2 causes) Bell's palsy and Extreme tiredness and Lymph node swelling in children (2 causes)",
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 30522] [3, 30522]
# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 9.9933, 10.8691, 3.4265]])
Citation
If you use our checkpoint, please cite our work:
@misc{https://doi.org/10.48550/arxiv.2205.04733,
doi = {10.48550/ARXIV.2205.04733},
url = {https://arxiv.org/abs/2205.04733},
author = {Formal, Thibault and Lassance, Carlos and Piwowarski, Benjamin and Clinchant, Stéphane},
keywords = {Information Retrieval (cs.IR), Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {From Distillation to Hard Negative Sampling: Making Sparse Neural IR Models More Effective},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}
}
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:1a5fb9e94aa3cafa21d97d8a48a4e95ccb377f06&dn=naver_splade-cocondenser-ensembledistilOpen magnet in torrent client · infohash 1a5fb9e94aa3cafa21d97d8a48a4e95ccb377f06
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| 1_SpladePooling/config.json | 106 B (106 B) | bc25ff825d070fe361960bb23bb0b078d3415bfc | 07580f9ee2553c16b418853be6811a7b0abd7393ee96c487f32b6b0ba1a5e6b4 |
| README.md | 3.8 KB (3,931 B) | ca7b17461c42b83c43c536f36407b41a130947e5 | a72359f41a7c6eee43f3b2408ef7295aed7a9eabe49f135213e9a5990650f5f2 |
| config.json | 670 B (670 B) | a2a1a1f5ca7866152b7da52ba160605d4e519ce4 | ea9c9cfb25535f76cd62c298eb14899f1dc08c467e8db5f146d79d1cf9b5728e |
| config_sentence_transformers.json | 274 B (274 B) | 3bfd230a3985b8d3f37915d6b0d24a2c42e35bad | 44e5b5295415281c3f61341f0670bf6752ce1d85880380faeebae3752889d718 |
| modules.json | 274 B (274 B) | 931b2627a09c4633497c786aa0126f30006e5942 | 49d17c5888db1d0f18dde2855770b5f796240df89ddf56f8589380072479e1e3 |
| pytorch_model.bin | 417.8 MB (438,141,995 B) | 60f7bf0665ced7431ddc2aa0dfe66de92c561177 | c16fced81589f81555499208ff7626ee28870c6dc7d4d053c552ff20f3363b0c |
| sentence_bert_config.json | 57 B (57 B) | 4eca68d85ecd3034cf4174d8a4033a75344ea62d | 948201d8329907aae938fa62f9ceeed53f5694dacc2b87b9f3b78b37ee986529 |
| special_tokens_map.json | 112 B (112 B) | e7b0375001f109a6b8873d756ad4f7bbb15fbaa5 | 303df45a03609e4ead04bc3dc1536d0ab19b5358db685b6f3da123d05ec200e3 |
| tokenizer.json | 455.2 KB (466,081 B) | 40c4a0f6c414c8218190234bbce9bf4cc04fa3ac | 5fd1c882abbd30517dced455a2c9768945ec726b96727927e4959348d9de550b |
| tokenizer_config.json | 466 B (466 B) | 33e298a7a6d1be145f9ce4c9c70b9b8abda768bd | caf60983193be1de070e5586716ec04ea5ec49cbfe4c56517eb88cdb4c4fb4ff |
| vocab.txt | 226.1 KB (231,508 B) | fb140275c155a9c7c5a3b3e0e77a9e839594a938 | 07eced375cec144d27c900241f3e339478dec958f92fddbc551f295c992038a3 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/naver_splade-cocondenser-ensembledistil/
- Slug
- naver_splade-cocondenser-ensembledistil
- Infohash
- 1a5fb9e94aa3cafa21d97d8a48a4e95ccb377f06
- License
- cc-by-nc-sa-4.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: naver_splade-cocondenser-ensembledistil.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | naver/splade-cocondenser-ensembledistil |
|---|---|
| Revision (pinned) | 49cf4c7b0db5b870a401ddf5e2669993ef3699c7 |
| Fetched at | 2026-09-04T03:18:00Z |
| License at fetch | cc-by-nc-sa-4.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-04T03:18:06Z
cc-by-nc-sa-4.0non-commercial use only418.5 MB (438,845,474 bytes)sentence-transformerspytorchbertspladequery-expansiondocument-expansionbag-of-wordspassage-retrievalknowledge-distillationsparse-encodersparsefeature-extractiontext-embeddings-inferenceendpoints_compatible1 language (en)paper: 2205.04733