Sentence Similarity
sentence-transformers
MLX
xlm-roberta
mteb
Sentence Transformers
Eval Results (legacy)
text-embeddings-inference
Instructions to use mlx-community/multilingual-e5-base-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use mlx-community/multilingual-e5-base-mlx with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("mlx-community/multilingual-e5-base-mlx") 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] - MLX
How to use mlx-community/multilingual-e5-base-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir multilingual-e5-base-mlx mlx-community/multilingual-e5-base-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
multilingual-e5-base-mlx
This model was converted to MLX format from intfloat/multilingual-e5-base.
Refer to the original model card for more details on the model.
Use with mlx
pip install mlx
git clone https://github.com/ml-explore/mlx-examples.git
cd mlx-examples/llms/hf_llm
python generate.py --model mlx-community/multilingual-e5-base-mlx --prompt "My name is"
- Downloads last month
- 182
Hardware compatibility
Log In to add your hardware
Quantized
Spaces using mlx-community/multilingual-e5-base-mlx 11
🥇
mteb/leaderboard_legacy
🥇
SmileXing/leaderboard
🥇
sq66/leaderboard_legacy
🚀
reader-1/1
🥇
shiwan7788/leaderboard-uni
Evaluation results
- accuracy on MTEB AmazonCounterfactualClassification (en)test set self-reported78.970
- ap on MTEB AmazonCounterfactualClassification (en)test set self-reported43.694
- f1 on MTEB AmazonCounterfactualClassification (en)test set self-reported73.381
- accuracy on MTEB AmazonCounterfactualClassification (de)test set self-reported71.724
- ap on MTEB AmazonCounterfactualClassification (de)test set self-reported82.221
- f1 on MTEB AmazonCounterfactualClassification (de)test set self-reported69.955
- accuracy on MTEB AmazonCounterfactualClassification (en-ext)test set self-reported79.655
- ap on MTEB AmazonCounterfactualClassification (en-ext)test set self-reported28.508
from sentence_transformers import SentenceTransformer model = SentenceTransformer("mlx-community/multilingual-e5-base-mlx") 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]