elixir-nx / hnswlib

Elixir binding for the hnswlib library.
Apache License 2.0
52 stars 9 forks source link

Clarify how `knn_query` works #12

Closed a-alhusaini closed 11 months ago

a-alhusaini commented 11 months ago

The example in the README shows how to use knn_query but it isn't clear how to retreive the the data I am storing in the index. Can we get a more clear example?

josevalim commented 11 months ago

knn_query returns the index. You need to keep the index of your data and associate the two. :)

josevalim commented 11 months ago

A PR to improve the docs is welcome btw!