Sha256: 94573d3ecc621c87f18daf365188138834e4bbe76eb29a3c3819e563de31a7c5
Contents?: true
Size: 1.8 KB
Versions: 3
Compression:
Stored size: 1.8 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::HnswIndex.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::HnswIndex.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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hnswlib-0.5.0 | README.md |
hnswlib-0.4.0 | README.md |
hnswlib-0.3.0 | README.md |