Feature Extraction
sentence-transformers
Safetensors
English
multilingual
qwen3
finance
legal
healthcare
code
stem
medical
text-embeddings-inference
Instructions to use zeroentropy/zembed-1-embedding with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use zeroentropy/zembed-1-embedding with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("zeroentropy/zembed-1-embedding") 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
#2
by ghita-ha - opened
README.md
CHANGED
|
@@ -31,7 +31,7 @@ zembed-1 is distilled directly from our SOTA reranker [zerank-2](https://hugging
|
|
| 31 |
|
| 32 |
The model supports flexible dimension projections (2560, 1280, 640, 320, 160, 80, 40) and quantization down to binary, compressing a full 8 KB vector to under 128 bytes with a controlled accuracy trade-off. See our Technical Report (Coming soon!) for details on the projection method. zembed-1 is multilingual from the ground up, with over half the training data in non-English languages.
|
| 33 |
|
| 34 |
-
|
| 35 |
|
| 36 |
## How to Use
|
| 37 |
|
|
|
|
| 31 |
|
| 32 |
The model supports flexible dimension projections (2560, 1280, 640, 320, 160, 80, 40) and quantization down to binary, compressing a full 8 KB vector to under 128 bytes with a controlled accuracy trade-off. See our Technical Report (Coming soon!) for details on the projection method. zembed-1 is multilingual from the ground up, with over half the training data in non-English languages.
|
| 33 |
|
| 34 |
+
This model is released under a non-commercial license. If you'd like a commercial license, please contact us at contact@zeroentropy.dev.
|
| 35 |
|
| 36 |
## How to Use
|
| 37 |
|