Artificial Intelligence

Embedding Model

A specialized model designed to convert text, images, or other data into vector embeddings. Embedding models are optimized for producing meaningful numerical representations rather than generating text.

Why It Matters

The choice of embedding model determines RAG quality, search relevance, and recommendation accuracy. A poor embedding model means poor retrieval regardless of the LLM.

Example

OpenAI's text-embedding-3-large, Cohere's embed-v3, or open-source models like BGE and E5 that convert text passages into 1024-dimensional vectors.

Think of it like...

Like a translator who converts any document into a universal language of numbers — the better the translator, the more meaning is preserved in the conversion.

Related Terms