Feature Extraction
sentence-transformers
Safetensors
English
bert
sparse-encoder
sparse
splade
Generated from Trainer
dataset_size:1200000
loss:SpladeLoss
loss:SparseMarginMSELoss
loss:FlopsLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use rasyosef/splade-tiny with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use rasyosef/splade-tiny with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("rasyosef/splade-tiny") 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
|
@@ -499,9 +499,10 @@ SparseEncoder(
|
|
| 499 |
|
| 500 |
```bibtex
|
| 501 |
@misc{alemneh2025spladetiny,
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
|
| 505 |
-
|
|
|
|
| 506 |
}
|
| 507 |
```
|
|
|
|
| 499 |
|
| 500 |
```bibtex
|
| 501 |
@misc{alemneh2025spladetiny,
|
| 502 |
+
author = {Yosef Worku Alemneh},
|
| 503 |
+
title = {SPLADE-Tiny},
|
| 504 |
+
year = {2025},
|
| 505 |
+
url = {https://huggingface.co/rasyosef/splade-tiny},
|
| 506 |
+
note = {Hugging Face model repository}
|
| 507 |
}
|
| 508 |
```
|