DEV Community

Cover image for Top 5 Vector Database Videos of 2023 🎥
Chloe Williams for Zilliz

Posted on

Top 5 Vector Database Videos of 2023 🎥

If you're looking to learn the fundamentals of vector databases, check out Zilliz's top 5 videos of 2023. Let's countdown, starting at number 5.

5: IVF Vector Index

Image description

IVF, or Inverted File index, is probably the most intuitive vector indexing method from a machine learning standpoint. It asks us, how can we easily cluster these points? and comes up with K-Means. When we query, we first look for the closest centroids, then into their clusters, massively reducing the number of computations from a brute for method.

🎥 Watch now

4: ANNOY Vector Index

Image description

ANNOY stands for Approximate Nearest Neighbors, Oh Yeah. It's a vector search algorithm that came out of Spotify. It is a rougher version of IVF. It uses hyperplanes to divide the space in half between two points, and does this over and over again. When we query, we are essentially querying a binary tree.

🎥 Watch now

3: How to Add Conversational Memory to an LLM Using LangChain

Image description

One of the main differences between talking to a person and talking to ChatGPT is memory. People have memories of their conversations. You can give this memory to ChatGPT using LangChain with a vector database. In this tutorial, we cover how.

🎥 Watch now

2: Persistent Vector Storage with LlamaIndex

Image description

Learn how to use Milvus as persistent vector storage with LlamaIndex in under 5 minutes.

🎥 Watch now

1: HNSW Vector Index

Image description

Hierarchical Navigable Small Worlds is a graph based index. When you are inserting the points, they are placed in some layers of the graph based on a uniform random number variable. At query time, the layers are queried top down.

🎥 Watch now

If you want to keep up with the latest videos, subscribe to Zilliz's YouTube channel.

Top comments (0)