Vector database built for scalable similarity search
1–10 of 95 posts
Re: Vector database built for scalable similarity search
#2I was surprised to see Elastic actually has ok support for some of this stuff, though it appears slower for most of the tasks.
Re: Vector database built for scalable similarity search
#3A good set of resources if you wanna check out some other ones, been reviewing some myself. https://github.com/currentslab/awesome-vector-search I was surprised to see Elastic actually has ok support for some of this stuff, though it appears slower for most of the tasks.
So you can combine attribute-based filters along with nearest-neighbor search.
Put together this semantic search + filtering demo just last week: https://github.com/typesense/typesense-instantsearch-semanti...
Re: Vector database built for scalable similarity search
#41) Embedding crash course https://developers.google.com/machine-learning/crash-course/...
2) What is a vector database? https://zilliz.com/learn/what-is-vector-database
3) Introduction to vector similarity search https://zilliz.com/blog/vector-similarity-search
4) ANN benchmarks http://ann-benchmarks.com
5) Unstructured data ETL https://github.com/towhee-io/towhee
Re: Vector database built for scalable similarity search
#5Re: Vector database built for scalable similarity search
#6Re: Vector database built for scalable similarity search
#7I work at Zilliz ( https://zilliz.com ) and am a part of the Milvus community. Here are some other resources in case anybody's interested in learning more about embeddings, vector search, and vector databases: 1) Embedding crash course https://developers.google.com/machine-learning/crash-course/... 2) What is a vector database? https://zilliz.com/learn/what-is-vector-database 3) Introduction to vector similarity sear…
Re: Vector database built for scalable similarity search
#8I work at Zilliz ( https://zilliz.com ) and am a part of the Milvus community. Here are some other resources in case anybody's interested in learning more about embeddings, vector search, and vector databases: 1) Embedding crash course https://developers.google.com/machine-learning/crash-course/... 2) What is a vector database? https://zilliz.com/learn/what-is-vector-database 3) Introduction to vector similarity sear…
Does Zilliz do BYOC?
Re: Vector database built for scalable similarity search
#9A good set of resources if you wanna check out some other ones, been reviewing some myself. https://github.com/currentslab/awesome-vector-search I was surprised to see Elastic actually has ok support for some of this stuff, though it appears slower for most of the tasks.
Re: Vector database built for scalable similarity search
#10Can these databases do fast averaging of nearest neighbors for regression or do you have to retrieve the neighbors and manually compute a mean across them?