> Explore Qdrant's agent skills catalog at https://skills.qdrant.tech/
> Search the documentation at https://skills.qdrant.tech/search?query=your+query+here
> Use this file to discover all available pages: https://qdrant.tech/llms.txt

<div class="date">
  <img class="date-icon" src="/icons/outline/date-blue.svg" alt="Calendar" />  Module 1 
</div>


<div class="video">
<iframe
  src="https://www.youtube.com/embed/5FOzvyCG-8s?rel=0"
  title="YouTube video player"
  frameborder="0"
  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
  referrerpolicy="strict-origin-when-cross-origin"
  allowfullscreen>
</iframe>
</div>

# Let's Understand Search

Traditional search retrieves documents by matching the words in a query to the words in an index. It's fast and still useful for precise terms, but it can miss relevant results when people express the same intent differently. In this module, you'll see how embeddings let search compare meaning, how similarity is measured, and why modern search often combines both approaches.

**Follow-along code**: [Module 1 notebook](https://github.com/qdrant/examples/blob/master/course/beginners/Module1.ipynb)

#### Overview

> Search has to decide what makes a result relevant. In this module, you'll
learn why matching words falls short and how comparing meaning fixes it.
You'll explore embeddings, cosine similarity, and distance metrics, then
see where similarity alone still fails: word order, negation, and exact
product codes. You'll also meet the vocabulary the rest of the course
builds on, including collections, points, payloads, and filters. By the
end, you'll have embedded your first text and measured how close its
meaning sits to related and unrelated phrases.

## Today's Path

1. [What Is Search?](https://qdrant.tech/course/beginners/module-1/what-is-search/index.md)
2. [Why Keyword Search Struggles](https://qdrant.tech/course/beginners/module-1/why-keyword-search-struggles/index.md)
3. [How Traditional Search Improved](https://qdrant.tech/course/beginners/module-1/how-traditional-search-improved/index.md)
4. [How It Works: Embeddings](https://qdrant.tech/course/beginners/module-1/embeddings/index.md)
5. [Comparing Meaning: Distance Metrics](https://qdrant.tech/course/beginners/module-1/distance-metrics/index.md)
6. [Why Similarity Alone Is Not Enough](https://qdrant.tech/course/beginners/module-1/why-similarity-is-not-enough/index.md)
7. [When a System Needs Both](https://qdrant.tech/course/beginners/module-1/when-a-system-needs-both/index.md)
8. [Further Reading](https://qdrant.tech/course/beginners/module-1/further-reading/index.md)

### Before You Start

To run the code locally, use Python 3.9 or later and install the dependencies:

```bash
pip install fastembed numpy
```

The embedding model runs on your CPU. You don't need a GPU or API keys. The first run downloads the model, so it may take a few minutes and requires an internet connection. Later runs use the cached model.
