Code Monkey home page Code Monkey logo

r2base's Introduction

R2Base: a Vector Database

R2Base enables one to easily rank and reduce (dimension reduction and clustering) of high-dimensional dense/sparse vectors.

Install & Run

# install dependencies
pip install -r requirements.txt

# run ES
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.10.1
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.10.1

# run API
uvicorn r2base.http.server:app --host 0.0.0.0 --workers 4

Or you can use docker-compose:

# CPU Mode
docker-compose -f docker-compose.yml up -d

# GPU mode
docker-compose -f docker-compose-gpu.yml up -d

Build Index

Support types

  • datetime
  • int
  • float
  • text
  • vector
  • term_score

Query Index

Basic Usage

  • match one or more field

      {
          "query": {"match": {field": "value"}}
      }
    
  • filter one or more field

      {
          "query": {"filter": "field=A OR field < B"}
      }
    
  • combine match and filter

      {
          "query": {
              "match": {"field": "value"},
              "filter": "field=A OR field < B"
          }
      }
    

Advanced Usage

  • match with threshold
  • match text with advanced ES query
  • scroll with query

Examples

Checkout examples/

Live Documentation

http://localhost:8000/docs

r2base's People

Contributors

snakeztc avatar p3ngliu avatar kyusonglee avatar panregedit avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.