Listen

Description

When you store vectors, each number takes up 32 bits.

With 1000 numbers per vector and millions of vectors, costs explode.

A simple chatbot can cost thousands per month just to store and search through vectors.

The Fix: Quantization

Think of it like image compression. JPEGs look almost as good as raw photos but take up far less space. Quantization does the same for vectors.


Today we are back continuing our series on search with Zain Hasan, a former ML engineer at Weaviate and now a Senior AI/ ML Engineer at Together. We talk about the different types of quantization, when to use them, how to use them, and their tradeoff. 

Three Ways to Quantize:

  1. Binary Quantization 
    • Turn each number into just 0 or 1
    • Ask: "Is this dimension positive or negative?"
    • Works great for 1000+ dimensions
    • Cuts memory by 97%
    • Best for normally distributed data
  2. Product Quantization 
    • Split vector into chunks
    • Group similar chunks
    • Store cluster IDs instead of full numbers
    • Good when binary quantization fails
    • More complex but flexible
  3. Scalar Quantization 
    • Use 8 bits instead of 32
    • Simple middle ground
    • Keeps more precision than binary
    • Less savings than binary


Key Quotes:

Zain Hasan:

Nicolay Gerold:

vector databases, quantization, hybrid search, multi-vector support, representation learning, cost reduction, memory optimization, multimodal recommender systems, brain-computer interfaces, weather prediction models, AI applications