1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: MIT OR Apache-2.0 //! Anomaly detection algorithms. //! //! Currently provides [`IsolationForest`] for unsupervised outlier detection //! using random isolation trees. mod iforest; pub use iforest::IsolationForest;