This project provides Rust bindings to Faiss, the state-of-the-art vector search and clustering library.
Currently, this crate does not build Faiss automatically for you. The dynamic library needs to be installed manually to your system.
master
branch should suffice, but in the event that it doesn't build properly, consider building Faiss from this fork, c_api_head
branch, which will contain the latest bindings to the C interface.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). For GPU support, don't forget to build gpufaiss_c
as well.toml
[dependencies]
"faiss" = "0.2.0"
If you have built Faiss with GPU support, you can include the "gpu" feature in the bindings:
toml
[dependencies]
"faiss" = {version = "0.2.0", features = ["gpu"]}
A basic example is seen below. Please check out the documentation for more.
```rust use faiss::{Index, index_factory, MetricType};
let mut index = indexfactory(64, "Flat", MetricType::L2)?; index.add(&mydata)?;
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); } ```
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.