top | item 28553235

(no title)

cyrusthegreat | 4 years ago

We use HNSW internally via HNSWLIB, it's the same algorithm that Facebook uses to power their embedding search.

discuss

order

sathergate|4 years ago

thanks! how did you make the decision to use hnsw over faiss and other search algorithms?

cyrusthegreat|4 years ago

Faiss actually also uses HNSW internally, HNSWLIB is just a lighter weight implementation which allowed us to iterate faster. In the future we will switch it back out for FAISS to take advantage of its full array of functionality.