Feature Extraction
sentence-transformers
PyTorch
ONNX
Safetensors
OpenVINO
xlm-roberta
mteb
Sentence Transformers
sentence-similarity
Eval Results (legacy)
Eval Results
text-embeddings-inference
Instructions to use intfloat/multilingual-e5-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use intfloat/multilingual-e5-large with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("intfloat/multilingual-e5-large") 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`pip install sentence_transformers~=2.2.2`
=>pip install -U sentence_transformers
For intfloat/multilingual-e5-large-instruct problem,
missing file sentence...config.json .
README.md
CHANGED
|
@@ -6075,7 +6075,7 @@ embeddings = model.encode(input_texts, normalize_embeddings=True)
|
|
| 6075 |
|
| 6076 |
Package requirements
|
| 6077 |
|
| 6078 |
-
`pip install sentence_transformers
|
| 6079 |
|
| 6080 |
Contributors: [michaelfeil](https://huggingface.co/michaelfeil)
|
| 6081 |
|
|
|
|
| 6075 |
|
| 6076 |
Package requirements
|
| 6077 |
|
| 6078 |
+
`pip install -U sentence_transformers`
|
| 6079 |
|
| 6080 |
Contributors: [michaelfeil](https://huggingface.co/michaelfeil)
|
| 6081 |
|