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
Model card: link the interactive HF Space demo (contributed by Apolinario / HF open-source team)
Browse files
README.md
CHANGED
|
@@ -23,6 +23,8 @@ library_name: transformers
|
|
| 23 |
|
| 24 |
> **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).
|
| 25 |
|
|
|
|
|
|
|
| 26 |
## Model Summary
|
| 27 |
|
| 28 |
**V-SPLADE** is a **0.25B (250M) inference-free sparse retriever** for visual-document retrieval — retrieving image-based document pages (rendered PDFs, slides, scanned reports) from a text query.
|
|
|
|
| 23 |
|
| 24 |
> **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).
|
| 25 |
|
| 26 |
+
> 🚀 **Try it live:** an interactive demo of the `Quality` variant is available as a [Hugging Face Space](https://huggingface.co/spaces/hugging-apps/v-splade-document-retrieval) (see [`naver/v-splade-quality`](https://huggingface.co/naver/v-splade-quality)), kindly contributed by [Apolinário](https://huggingface.co/multimodalart) and the Hugging Face open-source team.
|
| 27 |
+
|
| 28 |
## Model Summary
|
| 29 |
|
| 30 |
**V-SPLADE** is a **0.25B (250M) inference-free sparse retriever** for visual-document retrieval — retrieving image-based document pages (rendered PDFs, slides, scanned reports) from a text query.
|