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?

Glossary

Glossary to special Qualitative Cloud + VecDB API terminology

An example of a document in Relevance AI:

document_example = {
    "car": {
        "wheels":
            {
                "number": 4
            }
        }
    }
}

Terminology

Definition

Vectors

AKA embeddings, 1D arrays, latent space vectors

Models/Encoders

Turns data into vectors (e.g. Word2Vec turns words into vectors)

Vector Similarity Search

Nearest neighbor search, distance search

Dataset

Index, Table (a dataset is made up of multiple documents)

Documents

(AKA JSON, item, dictionary, row) - a document can contain vector and other important information.

Field

A field is the key to a Python dictionary.

Value

A value is the value of a Python dictionary

PreviousStructureNextFAQ

Last updated 3 years ago

Was this helpful?

🌱