Feature Extraction
sentence-transformers
Safetensors
English
bert
sparse-encoder
sparse
splade
Generated from Trainer
dataset_size:1000000
loss:SpladeLoss
loss:SparseMarginMSELoss
loss:FlopsLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use rasyosef/splade-mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use rasyosef/splade-mini with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("rasyosef/splade-mini") 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] - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -149,13 +149,13 @@ This tiny SPLADE model is `6x` smaller than Naver's official `splade-v3-distilbe
|
|
| 149 |
|
| 150 |
## Performance
|
| 151 |
|
| 152 |
-
The splade models were evaluated on 55 thousand queries and 8 million documents from the [MSMARCO](https://huggingface.co/datasets/microsoft/ms_marco) dataset.
|
| 153 |
|
| 154 |
||Size (# Params)|MRR@10 (MS MARCO dev)|
|
| 155 |
|:---|:----|:-------------------|
|
| 156 |
-
|`BM25`|-|18.
|
| 157 |
-
|`rasyosef/splade-tiny`|4.4M|30.
|
| 158 |
-
|`rasyosef/splade-mini`|11.2M|
|
| 159 |
|`naver/splade-v3-distilbert`|67.0M|38.7|
|
| 160 |
|
| 161 |
## Usage
|
|
|
|
| 149 |
|
| 150 |
## Performance
|
| 151 |
|
| 152 |
+
The splade models were evaluated on 55 thousand queries and 8.84 million documents from the [MSMARCO](https://huggingface.co/datasets/microsoft/ms_marco) dataset.
|
| 153 |
|
| 154 |
||Size (# Params)|MRR@10 (MS MARCO dev)|
|
| 155 |
|:---|:----|:-------------------|
|
| 156 |
+
|`BM25`|-|18.0|-|-|
|
| 157 |
+
|`rasyosef/splade-tiny`|4.4M|30.9|
|
| 158 |
+
|`rasyosef/splade-mini`|11.2M|33.2|
|
| 159 |
|`naver/splade-v3-distilbert`|67.0M|38.7|
|
| 160 |
|
| 161 |
## Usage
|