VecDB API
  • 🌱VecDB
  • 🌱Structure
  • 🌱Glossary
  • 🌱FAQ
  • πŸ’»API Reference
  • Get Started
    • πŸ’»Authentication
    • πŸ’»Build Your First Search
      • πŸ’»Creating your first dataset
      • πŸ’»Encoding + Inserting
      • πŸ’»Your First Text To Image Search!
  • for your understanding
    • 🌱Concepts about vectors
    • 🌱What is vector search?
    • 🌱Vectors for classification
    • 🌱Limitations of vectors
  • Guides
    • πŸ’»Combine keyword search with vector search
  • ADMIN
    • 🌱Project Overview
      • πŸ’»Project Creation
      • πŸ’»List All Datasets
      • Best Practice With Project Management
      • πŸ’»Copy dataset
      • πŸ’»Copy dataset from another project
      • πŸ’»Request an API key
      • πŸ’»Request a read-only API key
  • Services
    • πŸ”Search
      • Text Search
      • Vector Search
      • Hybrid Search
      • Traditional Search
    • πŸ”Predict
      • πŸ’»KNN regression from search results
      • πŸ’»KNN Regression
    • πŸ”Tag
      • πŸ’»Tagging
      • πŸ’»Diversity Tagging
    • πŸ”Cluster
      • Cluster A Dataset Field
  • DATASETS
    • 🌱Datasets Overview
      • 🌱Special Field Types
  • WORKFLOWS
    • 🌱Workflow Overview
Powered by GitBook
On this page

Was this helpful?

  1. Services
  2. Search

Hybrid Search

introduction to hybrid search

PreviousVector SearchNextPredict

Last updated 3 years ago

Was this helpful?

Overview

Hybrid search allows you to combine keyword search using a variant of the TF-IDF algorithm with vector search. The end result is vector similarity search + traditional fuzzy search with text and vector. You can also give weightings of each vector field towards the search, e.g. image_vector_ weights 100%, whilst description_vector_ 50%. This also supports filtering to only search through filtered results and facets to get the overview of products available when a minimum score is set.

Use Cases

We can sometimes get better results from combining traditional search with vector search. This is useful because it takes into consideration the exact words we type a well as the meaning of the strung-together text. Vector AI allows us to do this using the hybrid search API. You can find out more about its use case and an application in combining with vector search.

API

If you are interested in the API documentation, you can find that .

πŸ”
here