├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── ext └── isotree │ ├── ext.cpp │ └── extconf.rb ├── isotree.gemspec ├── lib ├── isotree.rb └── isotree │ ├── dataset.rb │ ├── isolation_forest.rb │ └── version.rb └── test ├── isolation_forest_test.rb ├── support ├── data.csv ├── import.py ├── model.bin ├── model.bin.metadata └── predict.py └── test_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /ext/isotree/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/ext/isotree/ext.cpp -------------------------------------------------------------------------------- /ext/isotree/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/ext/isotree/extconf.rb -------------------------------------------------------------------------------- /isotree.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/isotree.gemspec -------------------------------------------------------------------------------- /lib/isotree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/lib/isotree.rb -------------------------------------------------------------------------------- /lib/isotree/dataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/lib/isotree/dataset.rb -------------------------------------------------------------------------------- /lib/isotree/isolation_forest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/lib/isotree/isolation_forest.rb -------------------------------------------------------------------------------- /lib/isotree/version.rb: -------------------------------------------------------------------------------- 1 | module IsoTree 2 | VERSION = "0.4.1" 3 | end 4 | -------------------------------------------------------------------------------- /test/isolation_forest_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/isolation_forest_test.rb -------------------------------------------------------------------------------- /test/support/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/support/data.csv -------------------------------------------------------------------------------- /test/support/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/support/import.py -------------------------------------------------------------------------------- /test/support/model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/support/model.bin -------------------------------------------------------------------------------- /test/support/model.bin.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/support/model.bin.metadata -------------------------------------------------------------------------------- /test/support/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/support/predict.py -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/isotree-ruby/HEAD/test/test_helper.rb --------------------------------------------------------------------------------