Sha256: 89fb2e11f9e8c482928eb164ae502e442255a4f57574c178a4a147fa25efc9e4
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# Hnswlib.rb [![Build Status](https://github.com/yoshoku/hnswlib.rb/actions/workflows/build.yml/badge.svg)](https://github.com/yoshoku/hnswlib.rb/actions/workflows/build.yml) [![Gem Version](https://badge.fury.io/rb/hnswlib.svg)](https://badge.fury.io/rb/hnswlib) [![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://github.com/yoshoku/hnswlib.rb/blob/main/LICENSE.txt) [![Documentation](http://img.shields.io/badge/api-reference-blue.svg)](https://yoshoku.github.io/hnswlib.rb/doc/) Hnswlib.rb provides Ruby bindings for the [Hnswlib](https://github.com/nmslib/hnswlib) that implements approximate nearest-neghbor search based on hierarchical navigable small world graphs. ## Installation Add this line to your application's Gemfile: ```ruby gem 'hnswlib' ``` And then execute: $ bundle install Or install it yourself as: $ gem install hnswlib ## Documentation * [Hnswlib.rb API Documentation](https://yoshoku.github.io/hnswlib.rb/doc/) ## Usage ```ruby require 'hnswlib' f = 40 # length of item vector that will be indexed. t = Hnswlib::Index.new(n_features: f, max_item: 1000) 1000.times do |i| v = Array.new(f) { rand } t.add_item(i, v) end t.save('test.ann') u = Hnswlib::Index.new(n_features: f, max_item: 1000) u.load('test.ann') p u.get_nns_by_item(0, 100) # will find the 100 nearest neighbors. ``` ## License The gem is available as open source under the terms of the [Apache-2.0 License](https://www.apache.org/licenses/LICENSE-2.0). ## 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 [code of conduct](https://github.com/yoshoku/hnswlib.rb/blob/main/CODE_OF_CONDUCT.md).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hnswlib-0.2.0 | README.md |