Isolation Forest (ML_ISF)
This function isolates outliers by creating binary trees to efficiently separate normal data points from anomalies based on their low-dimensional representations.
Isolation Forest is an unsupervised machine learning algorithm designed for anomaly detection. It efficiently identifies outliers in a dataset by creating random binary trees that isolate anomalies with fewer tree traversals compared to normal data points. The algorithm measures the average path length needed to isolate an observation, and anomalies are expected to have shorter path lengths due to their rarity and distinctiveness.
Isolation Forest is particularly effective for large datasets with high-dimensional features, providing a scalable and accurate solution for detecting anomalies without the need for labeled data.
Sample Request
Build an Isolation Forest model named, "IsolateForest"
Building a Isolation Forest Anomaly Detection model
Isolation Forest
POST
https://autogon.ai/api/v1/engine/start
Request Body
Sample Request
Make predictions with the pre-built model passing an optional test data.
Detecting Anomalies with Isolation Forest
Isolation Forest Predict
POST
https://autogon.ai/api/v1/engine/start
Request Body
Sample Request
Evaluate anomaly detection model performance
Evaluating Anomaly Detection with Isolation Forest
Isolation Forest Metrics
POST
https://autogon.ai/api/v1/engine/start
Request Body
Last updated