From c7f45e1ed16b608d48052884ce25c7b57e97f0ad Mon Sep 17 00:00:00 2001 From: Sergey Grebenshchikov Date: Fri, 11 Oct 2024 03:31:32 +0200 Subject: [PATCH] README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb50954..3f594f2 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ func main() { Locality-Sensitive Hashing (LSH) is a type of approximate k-NN search. It's faster at the expense of accuracy. -LSH works by hashing data points such that points that are close in Hamming space tend to land in the same bucket, and computing k-nearest neighbors only on the buckets with the k nearest hashes. In particular, for *k*=1 only one bucket needs to be examined. +LSH works by hashing data points such that points that are close in Hamming space tend to land in the same bucket. In particular, for *k*=1 only one bucket needs to be examined. ```go package main