Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 4, 2023 01:19 pm GMT

Vector Databases

With the rise of AI, vector databases are becoming more popular. But what exactly is a vector database and when should you use it?

What is a vector database?

Traditional search engines use full-text search, but NLPs like ChatGPT and Bing AI use semantic search or similarity search, a type of search that considers not only the characters match, but also the meaning of the words. This feature of semantic search is powered by vector databases.

  • Recently Google also started using semantic search

Full-text search VS Semantic search

Let's compare these two types of search.

Full-text search

  • Search for a word or phrase in large amounts of text
  • The search engine returns a list of documents that contain the search term
SELECT title, contentFROM documentsWHERE search_vector @@ plainto_tsquery('english', 'example search');

Semantic search

  • Search for a word or phrase in large amounts of text
  • The search engine will return a list of documents that contain the search term or have a similar meaning

Semantic search graph

How does vectorization work?

Vectorization is the fundamental of vector databases, so first we need to understand this technique and its advantages.

NLP Example

  • A NLP receives a text as input and returns another text as output. This involves several processing steps, one of them is vectorization.

  • In the vectorization process, the tokens of the input text are converted into vectors using linear algebra operations. Simplifying:

A text becomes an array with numeric values, for example:

"learning NLP and AI" ---> [0.9, 0.02, 0.88, 0.1, 0.3]
  • The result of this "translation" is called a vector embedding. The vector embedding is a numerical representation of the input text.

  • It works not only for text, but also for images, audio, and video. Each of these types of data use a different algorithm to generate the vector embedding.

Vector data process

Vectorization algorithms

Images: vgg, resnet, inception, mobilenet, googlenet, etc.

Text: word2vec, glove, fasttext, BERT, node2vec, etc.

Audio: wav2vec, mxnet, etc.

Finally, the vector database!

  • Now we have a lot of vectors, but these vectors are basically numbers, matrices, they don't mean anything by themselves. So the vector database is used to index these vectors.

  • The vector database will index the vectors, leaving the vectors with similar values close to each other, this makes it possible to perform a similarity search in the database.

How the vector database knows which vectors are similar?

  1. Querying the database using math formulas to find the closest vectors in a high-dimensional space

    • Euclidean distance
    • Cosine similarity
  2. Machine learning algorithms

    • K-nearest neighbors (KNN)
    • Approximate nearest neighbors (ANN)
  3. Indexing

Examples

Example with football players

Let's suppose you want to search for the following text:

"Best football player in the world"

You will very likely get results talking about Messi, because currently (2023) he was elected the best football player in the world. But you will also get results talking about Cristiano Ronaldo, Mbapp, Neymar, etc. as they are also very good football players and considered "the best" by many fans.

Football players

Performing a semantic search in a dataset

# Load the dataset - 2000 first articlesdataset = load_dataset('openwebtext', split='train[:2000]')# Preprocess the datasettexts = [simple_preprocess(article['text']) for article in dataset]# Train a Word2Vec modelmodel = Word2Vec(texts, vector_size=200, window=5, min_count=1, workers=4)# Find the most similar words to "politics", "global", and "economysimilar_words = model.wv.most_similar(positive=['politics', 'global', 'economy'], topn=10)print(similar_words)
  • In this code, we are performing a semantic search on the terms "politics", "global", and "economy".

  • As result, we get the 10 most semantically close terms, with the term and the numerical proximity coefficient.

>>> 10 most similar results to "politics", "global", "economy"[    ('debt', 0.9471450448036194),     ('industry', 0.9427266716957092),     ('conflict', 0.9362503290176392),     ('labor', 0.9333578944206238),     ('scientific', 0.9326208829879761),     ('investment', 0.9326040148735046),     ('capitalism', 0.9312210083007812),     ('participation', 0.9291972517967224),     ('society', 0.9280529618263245),     ('crisis', 0.9253469705581665)]

Complete code: https://github.com/josethz00/vector-databases-talk/blob/main/semantic-search.py

Most popular vector databases

Most popular vector databases


Original Link: https://dev.to/josethz00/vector-databases-5df1

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To