K-Nearest Neighbors
21–30 of 38 posts
Re: K-Nearest Neighbors
#22Would HN benefit from some kind of "self promotion" or "marketing" tag?
Re: K-Nearest Neighbors
#23I wonder how their advertised "vector database" works. kNN combined with embeddings from pre-trained deep learning models can be very useful for information retrieval, (e.g. searching for duplicate/similar images or text). In the past I have used a k-d tree [1] for this, which allows O(log n) searches in the vector space. It seems they are offering a k-d-tree-as-a-service. [1] https://en.wikipedia.org/wiki/K-d_tree
As you said, common use cases include deduplication and image search, and especially semantic search (text).
Re: K-Nearest Neighbors
#24I wonder how their advertised "vector database" works. kNN combined with embeddings from pre-trained deep learning models can be very useful for information retrieval, (e.g. searching for duplicate/similar images or text). In the past I have used a k-d tree [1] for this, which allows O(log n) searches in the vector space. It seems they are offering a k-d-tree-as-a-service. [1] https://en.wikipedia.org/wiki/K-d_tree
Pinecone stores and searches through dense vector embeddings using a proprietary ANN index. It also has live index updates and metadata filtering, which you’d expect from any database but is surprisingly hard to find or do with vector indexes. As you said, common use cases include deduplication and image search, and especially semantic search (text).
Re: K-Nearest Neighbors
#25I wonder how their advertised "vector database" works. kNN combined with embeddings from pre-trained deep learning models can be very useful for information retrieval, (e.g. searching for duplicate/similar images or text). In the past I have used a k-d tree [1] for this, which allows O(log n) searches in the vector space. It seems they are offering a k-d-tree-as-a-service. [1] https://en.wikipedia.org/wiki/K-d_tree
> kNN combined with embeddings from pre-trained deep learning models can be very useful for information retrieval Indeed! We've been able to build simple reverse image search apps and other solutions using the power of embeddings from pre-trained ML models: https://gist.github.com/fzliu/c9380a7f9ba411adeff0b727cdba15... . One quick note: k-d trees are great for indexing low-dimensional data, but for high-dimensional…
Thanks for the reference! Nice outline of various ANN approaches.
Re: K-Nearest Neighbors
#26Re: K-Nearest Neighbors
#27Once you find the N nearest neighbors, why consider only the 0th order (locally constant) model, which is what KNN assumes? Instead you can use a larger N and fit a local linear regression. I have tried this on synthetic data sets, and it works pretty well. This is common for 1D regression but not regression with multiple predictors.
Re: K-Nearest Neighbors
#28Re: K-Nearest Neighbors
#29Earlier quoted context omitted.
> kNN combined with embeddings from pre-trained deep learning models can be very useful for information retrieval Indeed! We've been able to build simple reverse image search apps and other solutions using the power of embeddings from pre-trained ML models: https://gist.github.com/fzliu/c9380a7f9ba411adeff0b727cdba15... . One quick note: k-d trees are great for indexing low-dimensional data, but for high-dimensional…
For image retrieval, have you tried using a model trained with contrastive learning (e.g. SimCLR)? This could produce better embeddings for retrieval since the model is trained to explicitly minimize euclidean distance between similar pairs. Thanks for the reference! Nice outline of various ANN approaches.
If discovery or recall is what you're after, a generic image classification model trained with binary cross-entropy might be better. For example, performing reverse image search on a photo of a German Shepherd should always return images of GSheps in the first N pages, but showing other dog breeds in later pages and possibly even cats after that would be a desirable feature for many search/retrieval solutions. An embedding model trained with contrastive loss might have this behavior to a certain extent, but a model based on BCE should be better.
Re: K-Nearest Neighbors
#30Why would somebody use pinecone instead of a high quality open source library like FAISS?