<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Day 1: Vector Search Fundamentals on Qdrant - Vector Database</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/</link><description>Recent content in Day 1: Vector Search Fundamentals on Qdrant - Vector Database</description><generator>Hugo</generator><language>en-us</language><managingEditor>info@qdrant.tech (Andrey Vasnetsov)</managingEditor><webMaster>info@qdrant.tech (Andrey Vasnetsov)</webMaster><atom:link href="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/index.xml" rel="self" type="application/rss+xml"/><item><title>Points, Vectors and Payloads</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/embedding-models/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/embedding-models/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 1 
&lt;/div>

&lt;h1 id="points-vectors-and-payloads">Points, Vectors and Payloads&lt;/h1>
&lt;div class="video">
&lt;iframe 
 src="https://www.youtube.com/embed/Q6ZalzJ8dv8?si=TtxNB0PduStsOVGl"
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen>
&lt;/iframe>
&lt;/div>
&lt;br/>
&lt;p>Understanding Qdrant&amp;rsquo;s core data model is essential for building effective vector search applications. This lesson establishes the precise technical vocabulary and concepts you&amp;rsquo;ll use throughout the course.&lt;/p>
&lt;h2 id="points-the-core-entity">Points: The Core Entity&lt;/h2>
&lt;p>Points are the central entity that Qdrant operates with. A point is a record consisting of three components:&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Unique ID&lt;/strong> (64-bit unsigned integer or UUID)&lt;/li>
&lt;li>&lt;strong>Vector&lt;/strong> (dense, sparse, or multivector)&lt;/li>
&lt;li>&lt;strong>Optional Payload&lt;/strong> (metadata)&lt;/li>
&lt;/ul>
&lt;p>&lt;img src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/courses/day1/point-2.png" alt="Creating an embedding">&lt;/p></description></item><item><title>Distance Metrics</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/distance-metrics/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/distance-metrics/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 1 
&lt;/div>

&lt;h1 id="distance-metrics">Distance Metrics&lt;/h1>
&lt;p>After vectors are stored, we can use their spatial properties to perform &lt;a href="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/documentation/concepts/search/">nearest neighbor searches&lt;/a> that retrieve semantically similar items based on how close they are in this space.&lt;/p>
&lt;p>The position of a vector in embedding space only reflects meaning as far as the embedding model has learned to encode it. The model and its training objective tell you what &amp;ldquo;close&amp;rdquo; means.&lt;/p>
&lt;div class="video">
&lt;iframe 
 src="https://www.youtube.com/embed/P_vsVPsCgTQ?si=dvMvCSnT3M1MfRQT"
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen>
&lt;/iframe>
&lt;/div>
&lt;br/>
&lt;h2 id="quick-rule-of-thumb">Quick rule of thumb&lt;/h2>
&lt;p>Most users do &lt;strong>not&lt;/strong> need to design a distance metric from scratch:&lt;/p></description></item><item><title>Text Chunking Strategies</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/chunking-strategies/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/chunking-strategies/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 1 
&lt;/div>

&lt;h1 id="text-chunking-strategies">Text Chunking Strategies&lt;/h1>
&lt;div class="video">
&lt;iframe 
 src="https://www.youtube.com/embed/VNyA2nXqczk?si=Gs8Nepgf8q0XV8dp" 
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen>
&lt;/iframe>
&lt;/div>
&lt;br/>
&lt;p>So far we&amp;rsquo;ve talked about points - what they&amp;rsquo;re made of, and how Qdrant compares them for approximate nearest neighbor search using distance metrics like cosine similarity, dot product, or Euclidean distance.&lt;/p>
&lt;p>But none of this matters until we give Qdrant something meaningful to compare. That brings us to the real beginning of the system.&lt;/p>
&lt;p>&lt;strong>Disclaimer&lt;/strong>: In this section, we focus on text chunking. Although other types of data (images, videos, audio and code) can also be chunked, we are covering the basics of text chunking as it is the most popular type of data.&lt;/p></description></item><item><title>Demo: Semantic Movie Search</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/movie-search-system/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/movie-search-system/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 1 
&lt;/div>

&lt;h1 id="demo-semantic-movie-search">Demo: Semantic Movie Search&lt;/h1>
&lt;p>Let&amp;rsquo;s synthesize everything we&amp;rsquo;ve learned today into a practical project: a semantic search engine for science fiction movies.&lt;/p>
&lt;div class="video">
&lt;iframe 
 src="https://www.youtube.com/embed/S7FsgzYwzJs?si=SCPzfprpB6aBUPEs"
 frameborder="0"
 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
 referrerpolicy="strict-origin-when-cross-origin"
 allowfullscreen>
&lt;/iframe>
&lt;/div>
&lt;br/>
&lt;p>&lt;strong>Follow along in Colab:&lt;/strong> &lt;a href="https://colab.research.google.com/github/qdrant/examples/blob/master/course/day_1/Semantic_Recommendation_System_for_Science_Fiction_Movies.ipynb">
&lt;img src="https://colab.research.google.com/assets/colab-badge.svg" style="display:inline; margin:0;" alt="Open In Colab"/>
&lt;/a>&lt;/p>
&lt;h2 id="project-overview-when-search-understands-meaning">Project Overview: When Search Understands Meaning&lt;/h2>
&lt;p>Imagine asking a search engine: &lt;em>&amp;ldquo;Show me movies about questioning reality and the nature of existence&amp;rdquo;&lt;/em> and getting back &lt;em>The Matrix&lt;/em>, &lt;em>Inception&lt;/em>, and &lt;em>Ex Machina&lt;/em>, but not because these titles contain those exact words, but because the system understands what these films are actually about.&lt;/p></description></item><item><title>Project: Building a Semantic Search Engine</title><link>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/pitstop-project/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>info@qdrant.tech (Andrey Vasnetsov)</author><guid>https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/course/essentials/day-1/pitstop-project/</guid><description>&lt;div class="date">
 &lt;img class="date-icon" src="https://deploy-preview-2138--condescending-goldwasser-91acf0.netlify.app/icons/outline/date-blue.svg" alt="Calendar" /> Day 1 
&lt;/div>

&lt;h1 id="project-building-a-semantic-search-engine">Project: Building a Semantic Search Engine&lt;/h1>
&lt;p>Now that you&amp;rsquo;ve seen how semantic search works with movies, it&amp;rsquo;s time to build your own. Choose a domain you care about and create a search engine that understands meaning, not just keywords.&lt;/p>
&lt;h2 id="your-mission">Your Mission&lt;/h2>
&lt;p>Build a semantic search engine for a topic of your choice. You&amp;rsquo;ll discover how chunking strategy affects search quality in your specific domain.&lt;/p>
&lt;p>&lt;strong>Estimated Time:&lt;/strong> 120 minutes&lt;/p></description></item></channel></rss>