39What is late interaction (ColBERT), and how does it sit between bi-encoders and cross-encoders?▼hardGoogleCohereMicrosoft2 replies◆ premiumLate interaction gets cross-encoder-like quality with near-bi-encoder scalability. The signal is the per-token embeddings plus MaxSim matching that buys you the middle ground, and knowing what it costs. Here is the answer.Open full answer →
63How do you operate a multi-vector (ColBERT-style) index in production without it blowing up storage?▼hardGoogleCohereMicrosoft2 replies◆ premiumLate interaction stores one vector per token, so a corpus that fit in a few GB as single vectors can balloon 100x. The signal is knowing the compression and indexing tricks (centroids, residuals, PLAID) that make multi-vector retrieval shippable.Open full answer →