From 7017322577f6745b814bc6014ee6ee01a3629c97 Mon Sep 17 00:00:00 2001 From: osmarks Date: Thu, 28 Nov 2024 15:38:32 +0000 Subject: [PATCH] =?UTF-8?q?Edit=20=E2=80=98vector=5Findexing=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vector_indexing.myco | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector_indexing.myco b/vector_indexing.myco index e055c22..40c815c 100644 --- a/vector_indexing.myco +++ b/vector_indexing.myco @@ -1 +1 @@ -[[Neural nets|Modern technology]] has allowed converting many [[things]] to [[vectors]], allowing things related to other things to be found through finding records with the highest/highest/lowest dot product/cosine similarity/L2 distance with/to/from queries. \ No newline at end of file +[[Neural nets|Modern technology]] has allowed converting many [[things]] to [[vectors]], allowing things related to other things to be found through finding records with the highest/highest/lowest dot product/cosine similarity/L2 distance with/to/from queries. This can be done exactly through brute force, but this is obviously not particularly efficient. [[Algorithms]] allow sublinear runtime scaling wrt. record count, with some possibility of missing the best (as determined by brute-force) match. \ No newline at end of file