From aef9d5d60eaac4c2d557fbacafcc7533506961a8 Mon Sep 17 00:00:00 2001 From: jinweios Date: Fri, 20 Sep 2024 14:24:27 +0800 Subject: [PATCH] docs: delete sparse vector search comparison in readme Signed-off-by: jinweios --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0c6c178fa..624f7e6e8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ Checkout [pgvecto.rs vs pgvector](https://docs.pgvecto.rs/faqs/comparison-pgvect | Feature | pgvecto.rs | pgvector | | --- | --- | --- | | Filtering | Introduces VBASE method for vector search and relational query (e.g. Single-Vector TopK + Filter + Join). | When filters are applied, the results may be incomplete. For example, if you originally intended to limit the results to 10, you might end up with only 5 results with filters. | -| Sparse Vector Search | Supports both dense and sparse vector search. | Supports dense vector search. | | Vector Dimensions | Supports up to 65535 dimensions. | Supports up to 2000 dimensions. | | SIMD | SIMD instructions are dynamically dispatched at runtime to maximize performance based on the capabilities of the specific machine. | Added CPU dispatching for distance functions on Linux x86-64" in 0.7.0. | | Data Types | Introduces additional data types: binary vectors, FP16 (16-bit floating point), and INT8 (8-bit integer). | \- |