From 5e5da23b9adf53e9291aa5cb7de5d67531171592 Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Tue, 7 Dec 2021 21:24:47 +0100 Subject: [PATCH 1/6] Create README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5c5b77e --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Hashing float vectors in N-dimensions + +This is a working beta version. + +Algorithm description: +https://www.similar.pictures/algorithm-for-hashing-high-dimensional-float-vectors.html + +Please fork if you want use it long term, as the API might change soon. From 46412f5daaf391690993affb9fef3c86ad0d3c81 Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Tue, 7 Dec 2021 21:28:19 +0100 Subject: [PATCH 2/6] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5c5b77e..b6ee368 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,6 @@ Algorithm description: https://www.similar.pictures/algorithm-for-hashing-high-dimensional-float-vectors.html Please fork if you want use it long term, as the API might change soon. + + +For me TODO: Add example code. From da98553dc8beb760163c4a7ff645493faa164977 Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Tue, 7 Dec 2021 21:35:22 +0100 Subject: [PATCH 3/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b6ee368..8b07ce7 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,6 @@ https://www.similar.pictures/algorithm-for-hashing-high-dimensional-float-vector Please fork if you want use it long term, as the API might change soon. - For me TODO: Add example code. + +For you: use test files to get an idea. First make buckets, then hash set. From 559aa5d90dc687c188fc7fb565b85c15f2d9509d Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Tue, 7 Dec 2021 21:36:42 +0100 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b07ce7..a458367 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ Please fork if you want use it long term, as the API might change soon. For me TODO: Add example code. -For you: use test files to get an idea. First make buckets, then hash set. +For you: use test files to get an idea. First make buckets as in buckets_test.go, then hash set as in hashes_test.go. From 2cdf3a6a06d068655a7461898e02ccc45fadf484 Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Wed, 8 Dec 2021 02:42:29 +0100 Subject: [PATCH 5/6] Delete NEXT --- NEXT | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 NEXT diff --git a/NEXT b/NEXT deleted file mode 100644 index 0d5e890..0000000 --- a/NEXT +++ /dev/null @@ -1,4 +0,0 @@ -- Panic in verification that 2*eps is less than bucket width. - Make sure the "if" equality is correct. - -- Make sure hash contains ":" between bucket numbers. Or the analogy to ":". \ No newline at end of file From 10dc94b7c9442363228f55c677529ad13955ebea Mon Sep 17 00:00:00 2001 From: Vitali Fedulov Date: Sat, 11 Dec 2021 22:48:32 +0100 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a458367..17a83e3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Hashing float vectors in N-dimensions -This is a working beta version. +This is a working beta version, but now there is an issue https://github.com/vitali-fedulov/hyper/issues/1 Algorithm description: https://www.similar.pictures/algorithm-for-hashing-high-dimensional-float-vectors.html