Re: [scikit-learn] Isolation forests

2018-05-22 Thread Albert Thomas
Hi Sergio, In IsolationForest, BaseBagging is applied with ExtraTreeRegressor as base_estimator. Algorithm 2 (iTree) of the original paper is thus implemented in ExtaTreeRegressor. The forest is implemented thanks to the bagging procedure. HTH, Albert On Sun 20 May 2018 at 09:56, Sergio Solórza

[scikit-learn] Isolation forests

2018-05-20 Thread Sergio Solórzano
currently I am studying the "Isolation forest" algorithm proposed by Liu, Ting and Zhou. I started reading the scikit-learn implementation but could not find where exactly is the algorithm 2 of the original paper implemented. So far this is what I managed to understand: In the iforest.py file ther