You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hnswlib.rb provides Ruby bindings for the Hnswlib
that implements approximate nearest-neghbor search based on
hierarchical navigable small world graphs.
Installation
Add this line to your application's Gemfile:
gem'hnswlib'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install hnswlib
Note: hnswlib.rb gives no optimization options when building native extensions.
If necessary, add the optimization options yourself during installation, as follows;
require'hnswlib'f=40# length of datum point vector that will be indexed.t=Hnswlib::HierarchicalNSW.new(space: 'l2',dim: f)t.init_index(max_elements: 1000)1000.timesdo |i|
v=Array.new(f){rand}t.add_point(v,i)endt.save_index('test.ann')
require'hnswlib'u=Hnswlib::HierarchicalNSW.new(space: 'l2',dim: f)u.load_index('test.ann')q=Array.new(f){rand}pu.search_knn(q,100)# will find the 100 nearest neighbors.
License
The gem is available as open source under the terms of the Apache-2.0 License.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/hnswlib.rb.
This project is intended to be a safe, welcoming space for collaboration,
and contributors are expected to adhere to the Contributor Covenant code of conduct.