Feature Extraction
sentence-transformers
Safetensors
English
modernvbert
sparse-retrieval
splade
visual-document-retrieval
multimodal
information-retrieval
inference-free
sparse-encoder
custom_code
Instructions to use naver/v-splade-efficient with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use naver/v-splade-efficient with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("naver/v-splade-efficient", trust_remote_code=True) sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
README: add Demo link to header + fold Space demo credit into the variant note (single blockquote)
Browse files
README.md
CHANGED
|
@@ -20,9 +20,11 @@ library_name: transformers
|
|
| 20 |
|
| 21 |
# V-SPLADE: Inference-Free Multimodal Learned Sparse Retrieval for Production-Scale Visual Document Search
|
| 22 |
|
| 23 |
-
**Paper:** [arXiv:2605.30917](https://arxiv.org/abs/2605.30917) 路 **Code:** [github.com/naver/v-splade](https://github.com/naver/v-splade)
|
| 24 |
|
| 25 |
> **This repository hosts the `Efficient` variant** (lower FLOPs). For the higher-quality checkpoint, see [`naver/v-splade-quality`](https://huggingface.co/naver/v-splade-quality).
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## Model Summary
|
| 28 |
|
|
|
|
| 20 |
|
| 21 |
# V-SPLADE: Inference-Free Multimodal Learned Sparse Retrieval for Production-Scale Visual Document Search
|
| 22 |
|
| 23 |
+
**Paper:** [arXiv:2605.30917](https://arxiv.org/abs/2605.30917) 路 **Code:** [github.com/naver/v-splade](https://github.com/naver/v-splade) 路 **Demo:** [馃 Space](https://huggingface.co/spaces/hugging-apps/v-splade-document-retrieval)
|
| 24 |
|
| 25 |
> **This repository hosts the `Efficient` variant** (lower FLOPs). For the higher-quality checkpoint, see [`naver/v-splade-quality`](https://huggingface.co/naver/v-splade-quality).
|
| 26 |
+
>
|
| 27 |
+
> 馃殌 **Try it live:** an [interactive demo](https://huggingface.co/spaces/hugging-apps/v-splade-document-retrieval) of the `Quality` variant, kindly contributed by [Apolin谩rio](https://huggingface.co/multimodalart) and the Hugging Face open-source team.
|
| 28 |
|
| 29 |
## Model Summary
|
| 30 |
|