isotree 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +8 -1
- data/ext/isotree/extconf.rb +2 -1
- data/lib/isotree/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f1bbb1a3daca8511c9988d7975213ac466a19284bdcab1eb9a1b38b3883eb47
|
4
|
+
data.tar.gz: bafd2fadac39b4e5881b7d039f2a75514953b85edd79cc07e4cabd91eda79e76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf1c9582b2bf9355bb26151b62c95d00be849594bb06390f2a9b5015ed5119b175c76cd58b4429ee186ba14333f86c8e3a8b6f87af5a04f6550b2e2751c85112
|
7
|
+
data.tar.gz: 82f204ffd028cfb71840b0918c6fb5e7a741a7a2076d4dfe0c15c3f2e536fbd765be883fedc1a5e4ca73828f7429d08a22f521bc6b2e9f094ff10de6cf2eb979
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
# IsoTree
|
2
2
|
|
3
|
-
:evergreen_tree: [IsoTree](https://github.com/david-cortes/isotree) - outlier/anomaly detection
|
3
|
+
:evergreen_tree: [IsoTree](https://github.com/david-cortes/isotree) - outlier/anomaly detection using Isolation Forest - for Ruby
|
4
4
|
|
5
5
|
Learn how [Isolation Forest](https://www.youtube.com/watch?v=RyFQXQf4w4w) works
|
6
6
|
|
7
|
+
[![Build Status](https://travis-ci.org/ankane/isotree.svg?branch=master)](https://travis-ci.org/ankane/isotree)
|
8
|
+
|
7
9
|
## Installation
|
8
10
|
|
9
11
|
Add this line to your application’s Gemfile:
|
@@ -87,6 +89,11 @@ brew install libomp
|
|
87
89
|
|
88
90
|
Then reinstall the gem.
|
89
91
|
|
92
|
+
```sh
|
93
|
+
gem uninstall isotree --force
|
94
|
+
bundle install
|
95
|
+
```
|
96
|
+
|
90
97
|
## History
|
91
98
|
|
92
99
|
View the [changelog](https://github.com/ankane/isotree/blob/master/CHANGELOG.md)
|
data/ext/isotree/extconf.rb
CHANGED
data/lib/isotree/version.rb
CHANGED