Skip to content
← All explainers

Plain-language explainer

Embeddings, explained visually

What is an embedding, and how does it capture meaning?

An embedding turns a piece of text into a list of numbers, a vector, positioned so that similar meanings sit close together. Meaning becomes geometry. Words and sentences that are used in similar ways end up near each other, even when they share no exact words. That is what lets a search box find the right help article from a different phrasing, and what lets retrieval pull the relevant document for an AI answer. The model learns these positions from how language is actually used.

Do not just read it. Operate the mechanism yourself in a short interactive lesson.

See it work: Embeddings: meaning as coordinates β†’

Free, no code, no signup.

What people get wrong

  • Embeddings store the definition of a word. They store a position learned from usage, not a dictionary entry.
  • Matching means sharing keywords. Embeddings match on meaning, so 'car' and 'automobile' land close without overlapping letters.
  • One embedding is the true meaning of a word. Meaning shifts with context, which is what attention later adjusts.

Where you see it in real products

  • Semantic search and site search rank by vector closeness.
  • RAG uses embeddings to fetch the documents most related to a question.
  • Recommendations and dedup group items that sit near each other in vector space.

Related explainers

Part of See How AI Works, a free interactive course, where you learn how modern AI works by operating it, not watching videos.