Anomaly Detection
Flag rare, suspicious, or faulty observations that deviate from the norm.
Anomaly detection flags the rare, suspicious, or faulty observations that deviate from expected patterns. The methods below range from tree-based and density approaches to statistical thresholds and neural detectors for complex high-dimensional data.
- Use Isolation Forest as a strong general-purpose baseline.
- Use statistical thresholds for simple monitoring; autoencoders for high-dimensional data.
| # | Algorithm | Best for | Common fields |
|---|---|---|---|
| 1 | Isolation Forest | General anomaly detection |
|
| 2 | One-Class SVM | Novelty detection on smaller datasets |
|
| 3 | Local Outlier Factor | Density-based outliers |
|
| 4 | Autoencoders | Complex high-dimensional anomalies |
|
| 5 | Gaussian / Statistical Threshold Models | Simple monitoring |
|
| 6 | Robust Covariance / Elliptic Envelope | Gaussian-like data |
|