You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,8 @@ This is a distributed Scala/Spark implementation of the Isolation Forest unsuper
34
34
algorithm. It includes both the standard Isolation Forest and the Extended Isolation Forest,
35
35
which uses random hyperplane splits to eliminate the axis-aligned bias of the original algorithm. The standard
36
36
Isolation Forest also features support for ONNX export for easy cross-platform inference. This library was
37
-
created by [James Verbus](https://www.linkedin.com/in/jamesverbus/) from the LinkedIn Anti-Abuse AI team.
37
+
created by [James Verbus](https://jverbus.github.io/) from the LinkedIn Anti-Abuse AI team.
38
+
You can find him on [LinkedIn](https://www.linkedin.com/in/jamesverbus/).
38
39
39
40
## Features
40
41
@@ -44,6 +45,7 @@ created by [James Verbus](https://www.linkedin.com/in/jamesverbus/) from the Lin
44
45
***Extended Isolation Forest:** The `ExtendedIsolationForest` variant uses random hyperplane splits instead of
45
46
axis-aligned splits, eliminating the directional bias present in the standard algorithm. This is especially
46
47
useful for detecting anomalies in data with correlated features or anomalies that don't align with individual feature axes.
48
+
See this [interactive demo](https://jverbus.github.io/2026/03/18/announcing-extended-isolation-forest-support/#try-it-live) illustrating the difference between Isolation Forest and Extended Isolation Forest.
47
49
***Broad portability via ONNX:** The `isolation-forest-onnx` module provides a Python-based converter to convert a
48
50
trained standard `IsolationForestModel` to ONNX format for broad portability across platforms and languages.
49
51
[ONNX](https://onnx.ai/) is an open format built to represent machine learning models.
0 commit comments