├── .github └── workflows │ └── test.yml ├── .gitignore ├── Changelog.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── benchmark └── process.rb ├── docs └── READMEv1.md ├── lib ├── predictor.rb └── predictor │ ├── base.rb │ ├── distance.rb │ ├── input_matrix.rb │ ├── predictor.rb │ └── version.rb ├── predictor.gemspec └── spec ├── base_spec.rb ├── input_matrix_spec.rb ├── predictor_spec.rb └── spec_helper.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.gem 3 | Gemfile.lock 4 | ext/Makefile 5 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmark/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/benchmark/process.rb -------------------------------------------------------------------------------- /docs/READMEv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/docs/READMEv1.md -------------------------------------------------------------------------------- /lib/predictor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/lib/predictor.rb -------------------------------------------------------------------------------- /lib/predictor/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/lib/predictor/base.rb -------------------------------------------------------------------------------- /lib/predictor/distance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/lib/predictor/distance.rb -------------------------------------------------------------------------------- /lib/predictor/input_matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/lib/predictor/input_matrix.rb -------------------------------------------------------------------------------- /lib/predictor/predictor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/lib/predictor/predictor.rb -------------------------------------------------------------------------------- /lib/predictor/version.rb: -------------------------------------------------------------------------------- 1 | module Predictor 2 | VERSION = "2.3.1" 3 | end 4 | -------------------------------------------------------------------------------- /predictor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/predictor.gemspec -------------------------------------------------------------------------------- /spec/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/spec/base_spec.rb -------------------------------------------------------------------------------- /spec/input_matrix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/spec/input_matrix_spec.rb -------------------------------------------------------------------------------- /spec/predictor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/spec/predictor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyagato-00/predictor/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------