paper-with-me

Papers

Isolation forests: looking beyond tree depth

2021-11-23 · David Cortes

The isolation forest algorithm for outlier detection exploits a simple yet effective observation: if taking some multivariate data and making uniformly random cuts across the feature space recursively, it will take fewer such random cuts for an outlier to be left alone in a given subspace as compared to regular observations. The original idea proposed an outlier score based on the tree depth (number of random cuts) required for isolation, but experiments here show that using information about the size of the feature space taken and the number of points assigned to it can result in improved results in many situations without any modification to the tree structure, especially in the presence of categorical features.

📄 PDF Abstract BibTeX arXiv:2111.11639

Code (1)

david-cortes/isotree 공식 구현

Tasks

Outlier Detection

Similar Papers 제목 키워드 기반

Distribution and volume based scoring for Isolation Forests

2023-09-20 · Hichem Dhouib, Alissa Wilms, Paul Boes

We make two contributions to the Isolation Forest method for anomaly and outlier detection. The first contribution is an information-theoretically motivated generalisation of the score function that is used to aggregate …

Outlier Detection

The Role of Depth, Width, and Tree Size in Expressiveness of Deep Forest

2024-07-06 · Shen-Huan Lyu, Jin-Hui Wu, Qin-Cheng Zheng, Baoliu Ye

Random forests are classical ensemble algorithms that construct multiple randomized decision trees and aggregate their predictions using naive averaging. \citet{zhou2019deep} further propose a deep forest algorithm with …

Distance approximation using Isolation Forests

2019-10-27 · David Cortes

This work briefly explores the possibility of approximating spatial distance (alternatively, similarity) between data points using the Isolation Forest method envisioned for outlier detection. The logic is similar to tha…

Missing ValuesOutlier Detection

Trees, Forests, Chickens, and Eggs: When and Why to Prune Trees in a Random Forest

2021-03-30 · Siyu Zhou, Lucas Mentch

Due to their long-standing reputation as excellent off-the-shelf predictors, random forests continue remain a go-to model of choice for applied statisticians and data scientists. Despite their widespread use, however, un…

Random boosting and random^2 forests -- A random tree depth injection approach

2020-09-13 · Tobias Markus Krabel, Thi Ngoc Tien Tran, Andreas Groll, Daniel Horn 외

The induction of additional randomness in parallel and sequential ensemble methods has proven to be worthwhile in many aspects. In this manuscript, we propose and examine a novel random tree depth injection approach suit…