Skip to main content

Questions tagged [vector-database]

4 votes
1 answer
108 views

I have few hundred millions embeddings with dimensions 512 and 768. I looking for vector DB that could run similarity search enough fast and with high precision. I don't want to use server with GPU, ...
Vitonsky's user avatar
2 votes
0 answers
37 views

If we want to implement RAG for large dataset, which similarity works? Why? Also, how to handle problem with size of matrix in cosine similarity?
user10296606's user avatar
  • 1,906
1 vote
0 answers
31 views

Background I manage a property portfolio on platforms like Airbnb, handling customer support through the entire guest journey (pre-booking to post-stay). I'm building a RAG system to help automate ...
dowjones123's user avatar
0 votes
0 answers
38 views

I am trying to create a vector database using Python. I have this dataset in a CSV file: ...
Rasai Stewart's user avatar
2 votes
1 answer
59 views

Introduction and case scenario I am developing a microservice for our project, which is going to handle a section named 'custom categories'. The scenario for this part is this: 1- Define the custom ...
Vahid's user avatar
  • 123
0 votes
0 answers
51 views

I have a set of data points that have various attributes (product, geography, unit, date). I then have incoming data with the same attributes. I want to vectorise my data set to find the closeness of ...
Michael's user avatar
1 vote
0 answers
41 views

In this tutorial, I do not understand what "text" refers to vectorstore = Pinecone(index, embeddings.embed_query, "text") Could you please help?...
Karl 17302's user avatar
0 votes
1 answer
1k views

My question is why can't we use a pandas dataframe to do all the data retrieval? Can someone give reasons apart from the fact that databases has the persistence of Data?
Denuwan Weerarathne's user avatar
18 votes
3 answers
9k views

A vector database is a type of database that stores and manages unstructured data, such as text, images, or audio, in vector embeddings (high-dimensional vectors) to make it easy to find and retrieve ...
Lance Pollard's user avatar
0 votes
0 answers
900 views

I'm learning ChatGPT/LLM Development and am regularly coming across all different kinds of vector database implementations. Some of them, e.g. Chroma, currently only support in-memory implementations ...
codeananda's user avatar