From 51bde5fb22df33251733bc176068bfdd2a7edb5d Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 9 Jan 2024 14:38:25 -0800 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91be37c..f1bfa22 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Supported index types are: ## HNSW -An HNSW index creates a multilayer graph. It has better query performance than IVFFlat (in terms of speed-recall tradeoff), but has slower build times and uses more memory. There’s also no training step like IVFFlat, so the index can be created without any data in the table. +An HNSW index creates a multilayer graph. It has better query performance than IVFFlat (in terms of speed-recall tradeoff), but has slower build times and uses more memory. Also, an index can be created without any data in the table since there isn’t a training step like IVFFlat. Add an index for each distance function you want to use.