vendor/isotree/README.md in isotree-0.1.3 vs vendor/isotree/README.md in isotree-0.1.4
- old
+ new
@@ -1,8 +1,8 @@
# IsoTree
-Fast and multi-threaded implementation of Extended Isolation Forest, Fair-Cut Forest, SCiForest (a.k.a. Split-Criterion iForest), and regular Isolation Forest, for outlier/anomaly detection, plus additions for imputation of missing values, distance/similarity calculation between observations, and handling of categorical data. Written in C++ with interfaces for Python and R.
+Fast and multi-threaded implementation of Extended Isolation Forest, Fair-Cut Forest, SCiForest (a.k.a. Split-Criterion iForest), and regular Isolation Forest, for outlier/anomaly detection, plus additions for imputation of missing values, distance/similarity calculation between observations, and handling of categorical data. Written in C++ with interfaces for Python and R. An additional wrapper for Ruby can be found [here](https://github.com/ankane/isotree).
The new concepts in this software are described in:
* [Distance approximation using Isolation Forests](https://arxiv.org/abs/1910.12362)
* [Imputing missing values with unsupervised random trees](https://arxiv.org/abs/1911.06646)
@@ -79,9 +79,13 @@
sudo make install
sudo ldconfig
```
(Will build as a shared object - linkage is then done with `-lisotree`)
+
+* Ruby
+
+See [external repository with wrapper](https://github.com/ankane/isotree).
# Sample usage
**Warning: default parameters in this implementation are very different from default parameters in others such as SciKit-Learn's, and these defaults won't scale to large datasets (see documentation for details).**