mxbai-embed-large-v1
Discover mxbai-embed-large-v1, our state-of-the-art English embedding model. Learn about its powerful performance, versatility across various NLP tasks, and how to effectively use it for semantic search, information retrieval, and other applications.
API Reference
Embeddings
Model Reference
mxbai-embed-large-v1
Blog Post
Open Source Strikes Bread - New Fluffy Embedding Model
Model Description
mxbai-embed-large-v1 is our powerful English embedding model that provides state-of-the-art performance among efficiently sized models. It outperforms closed source models like OpenAI's text-embedding-ada-002.
The model was trained on a vast dataset of over 700 million pairs using contrastive training and fine-tuned on more than 30 million high-quality triplets using the AnglE loss function. This extensive training enables the model to adapt to a wide range of topics and domains, making it suitable for various real-world applications and Retrieval-Augmented Generation (RAG) use cases.
mxbai-embed-large-v1 is well-suited for binary embeddings. This helps you save 32x storage and achieve 40x faster retrieval, while maintaining over 96% of the performance.
mxbai-embed-large-v1 achieves top performance on the Massive Text Embedding Benchmark (MTEB), which measures embedding models across seven tasks: classification, clustering, pair classification, re-ranking, retrieval, semantic textual similarity, and summarization. The model's strong performance across these diverse tasks demonstrates its versatility and robustness.
Layers | Embedding Dimension | Recommended Sequence Length | Language |
---|---|---|---|
24 | 1024 | 512 | English |
Using a Prompt
Adding a domain-specific prompt to a text can help the model understand how the embedding will be used.
For retrieval tasks, the query can be preceded by the prompt: Represent this sentence for searching relevant passages:
. For other tasks, the text can be used as-is without any additional prompt.
The prompt
parameter is available via our /embeddings endpoint,
SDKs, and some third-party integrations, to automatically prepend the prompt to the texts for
you. By default, we calculate the embeddings using the provided text directly.
Suitable Scoring Methods
- Cosine Similarity: Ideal for measuring the similarity between text vectors, commonly used in tasks like semantic textual similarity and information retrieval.
- Euclidean Distance: Useful for measuring dissimilarity between embeddings, especially effective in clustering and outlier detection.
- Dot Product: Appropriate when embeddings are normalized; used in tasks where alignment of vector orientation is critical.
Limitations
- Language: mxbai-embed-large-v1 is trained on English text and is specifically designed for the English language.
- Sequence Length: The suggested maximum sequence length is 512 tokens. Longer sequences may be truncated, leading to a loss of information.
Examples
Calculate Sentence Similarities
The following code illustrates how to compute similarities between sentences using the cosine similarity score function.
Information Retrieval
The following code snippet demonstrates the retrieval of information related to a specific query from a given corpus. Note that the prompt Represent this sentence for searching relevant passages:
is used for the query.