Feature Extraction
sentence-transformers
PyTorch
ONNX
English
bert
splade++
document-expansion
sparse representation
bag-of-words
passage-retrieval
knowledge-distillation
document encoder
sparse-encoder
sparse
splade
text-embeddings-inference
Instructions to use seerware/Splade_PP_en_v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use seerware/Splade_PP_en_v2 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("seerware/Splade_PP_en_v2") 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -79,7 +79,7 @@ SPLADE models are a fine balance between retrieval effectiveness (quality) and r
|
|
| 79 |
4. For Industry setting: Effectiveness on custom domains needs more than just **Trading FLOPS for tiny gains** and The Premise "SPLADE++ are not well suited to mono-cpu retrieval" does not hold.
|
| 80 |
5. Owing to query-time inference latency we still need 2 models one for query & doc, This is a Doc model and Query model will be **released soon.**
|
| 81 |
|
| 82 |
-
<img src="./ID.png" width=
|
| 83 |
|
| 84 |
*Note: The paper refers to the best performing models as SPLADE++, hence for consistency we are reusing the same.*
|
| 85 |
|
|
|
|
| 79 |
4. For Industry setting: Effectiveness on custom domains needs more than just **Trading FLOPS for tiny gains** and The Premise "SPLADE++ are not well suited to mono-cpu retrieval" does not hold.
|
| 80 |
5. Owing to query-time inference latency we still need 2 models one for query & doc, This is a Doc model and Query model will be **released soon.**
|
| 81 |
|
| 82 |
+
<img src="./ID.png" width=750 height=650/>
|
| 83 |
|
| 84 |
*Note: The paper refers to the best performing models as SPLADE++, hence for consistency we are reusing the same.*
|
| 85 |
|