Giter Site home page Giter Site logo

faiss-wrapper's Introduction

FAISS Wrapper

FAISS Wrapper is a high-level wrapper for Facebook similarity search system FAISS (https://github.com/facebookresearch/faiss)

Author: Maksim Eremeev ([email protected])

Installation

conda install -c pytorch faiss-cpu

python setup.py build
pip install .

Quick Start

Cosine distance-based similarity search with FW (Python version):

import faiss_wrapper
import numpy as np

fw = faiss_wrapper.FaissWrapper(vec_dimension=3, 
                                transformation=lambda vec: vec / np.linalg.norm(vec), 
                                num_clusters=2, num_probe=10, metric='ip')

fw.train_index({'1': [1, 2, 3], '00': [2, 2, 1]})
fw.add_vectors_to_index({'1': [1, 2, 3], '00': [2, 2, 1]})

fw.search([[1, 0, 0], [0, 0, 1], [0, 1, 0]], 2)

>>> [
       {'00': 0.6666667, '1': 0.26726124},
       {'1': 0.80178374, '00': 0.33333334},
       {'00': 0.6666667, '1': 0.5345225}
    ]

faiss-wrapper's People

Contributors

maks5507 avatar

Stargazers

Jacob A Rose avatar

Watchers

 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.