# -*- encoding: utf-8 -*- # stub: hanny 0.2.1 ruby lib Gem::Specification.new do |s| s.name = "hanny".freeze s.version = "0.2.1".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["yoshoku".freeze] s.bindir = "exe".freeze s.date = "2021-07-10" s.description = "Hanny is a Hash-based Approximate Nearest Neighbor (ANN) search library in Ruby.\nHash-based ANN converts vector data into binary codes and builds a hash table by using the binary codes as hash keys.\nTo build the hash table, Hanny uses Locality Sensitive Hashing (LSH) of approximating cosine similarity.\nIt is known that if the code length is sufficiently long (ex. greater than 128-bit), LSH can obtain high search performance.\nIn the experiment, Hanny achieved about twenty times faster search speed than the brute-force search by Euclidean distance.\n".freeze s.email = ["yoshoku@outlook.com".freeze] s.files = [".coveralls.yml".freeze, ".github/workflows/build.yml".freeze, ".github/workflows/coverage.yml".freeze, ".gitignore".freeze, ".rspec".freeze, ".rubocop.yml".freeze, "CHANGELOG.md".freeze, "CODE_OF_CONDUCT.md".freeze, "Gemfile".freeze, "LICENSE.txt".freeze, "README.md".freeze, "Rakefile".freeze, "Steepfile".freeze, "hanny.gemspec".freeze, "lib/hanny.rb".freeze, "lib/hanny/lsh_index.rb".freeze, "lib/hanny/utils.rb".freeze, "lib/hanny/version.rb".freeze, "sig/hanny.rbs".freeze, "sig/hanny/lsh_index.rbs".freeze, "sig/hanny/utils.rbs".freeze] s.homepage = "https://github.com/yoshoku/hanny".freeze s.licenses = ["BSD-2-Clause".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "Hanny is a Hash-based Approximate Nearest Neighbor search library in Ruby.".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, [">= 0.9.1".freeze]) end