"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

August 28, 2019

Day #270 - Installing FAISS on Ubuntu


#1. Download project https://github.com/facebookresearch/faiss
#2. Install faiss - conda install -c pytorch faiss-cpu (Details - https://github.com/facebookresearch/faiss/blob/master/INSTALL.md )
#. Crash happens in current version. Filed issue in https://github.com/facebookresearch/faiss/issues/928
#3. To Fix - conda install faiss-cpu=1.5.1 -c pytorch -y
#Demo Code
import sys
import faiss
import numpy as np
index = faiss.IndexFlatL2(64)
print(index.is_trained)
Happy Learning!!!

No comments: