
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
isolation-forest
Advanced tools
Isolation Forest for JavaScript / TypeScript.
Use it to efficiently detect anomalies in your dataset.
$ npm install --save isolation-forest
import { IsolationForest } from 'isolation-forest'
var isolationForest = new IsolationForest();
isolationForest.fit(trainingData) // Type ObjectArray ({}[]);
var trainingScores = isolationForest.scores()
// then predict any data
var scores = isolationForest.predict(data)
IsolationForest(numberOfTrees, subsamplingSize)
takes 2 optional paramaters.
numberOfTrees: Amount of trees the forest should generate. Default is 100, because for most datasets the anomaly scores converges with less than 100 trees.
subsamplingSize: Size of used subsamples of the dataset during trainging phase. Helps avoiding common problems in anomaly detection (swamping and masking). Default is 256 or the dataset size, if smaller.
For more info, see [1].
As stated in [1]:
If instances return a score very close to 1, then they are definitely anomalies.
If instances have a score much smaller than 0.5, then they are quite safe to be regarded as normal instances.
If all the instances return a score β 0.5, then the entire sample does not really have any distinct anomaly.
Thank you for using my package. If you find bugs or have ideas to improve the package, open a PR on GitHub with your changes. I'll add the changes as soon as possible.
FAQs
Isolation Forest for anomaly detection.
The npm package isolation-forest receives a total of 861 weekly downloads. As such, isolation-forest popularity was classified as not popular.
We found that isolation-forest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Γ faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.