What is IVF indexing and when would you use it?
LLM Engineer Interview Questions: Embeddings, Vector Search, and Cosine Similarity Explained
Audio flashcard · 0:19Nortren·
What is IVF indexing and when would you use it?
0:19
IVF stands for Inverted File index. It clusters vectors into partitions and only searches the most relevant partitions for each query. IVF is faster than HNSW for very large datasets and uses less memory but typically has slightly lower recall. It is often combined with product quantization, called IVF-PQ, for billion-scale vector search.
pinecone.io