faiss 0.2.0

High-level bindings for Faiss, the vector similarity search engine
Documentation

Faiss-rs

faiss at crates.io Build Status

This project provides Rust bindings to Faiss, the state-of-the-art vector search and clustering library.

Installing as a dependency

Currently, this crate does not build Faiss automatically for you. The dynamic library needs to be installed manually to your system.

  1. Follow the instructions here to build Faiss. At the moment, it is best to build Faiss from this fork, which is a custom version containing the latest bindings to the C interface (see facebookresearch/faiss#317 for its potential inclusion to the main repository).
  2. Afterwards, follow the instructions on building the C API of Faiss. This will result in the dynamic library faiss_c, which needs to be installed in a place where your system will pick up (in Linux, try somewhere in the LD_LIBRARY_PATH environment variable, such as "/usr/lib", or try adding a new path to this variable).
  3. You are now ready to include this crate as a dependency:
[dependencies]
"faiss" = "0.1.0"

If you have built Faiss with GPU support, you can include the "gpu" feature to enable it in the bindings:

[dependencies]
"faiss" = {version = "0.1.0", features = ["gpu"]}

Using

A basic example is seen below. Please check out the documentation for more.

use faiss::{Index, index_factory, MetricType};

let mut index = index_factory(64, "Flat", MetricType::L2)?;
index.add(&my_data)?;

let result = index.search(&my_query, 5)?;
for (i, (l, d)) in result.labels.iter()
    .zip(result.distances.iter())
    .enumerate()
{
    println!("#{}: {} (D={})", i + 1, *l, *d);
}

License and attribution notice

Licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

This work is not affiliated with Facebook AI Research or the main Faiss software.