Y
Hacker News
new
|
ask
|
show
|
jobs
by
sathergate
1737 days ago
which search algorithm does it use?
1 comments
cyrusthegreat
1737 days ago
We use HNSW internally via HNSWLIB, it's the same algorithm that Facebook uses to power their embedding search.
link
sathergate
1737 days ago
thanks! how did you make the decision to use hnsw over faiss and other search algorithms?
link
cyrusthegreat
1737 days 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.
link