Re: [scikit-learn] implementing regularized random forest

2020-11-03 Thread Nicolas Hug
Mickael, You probably don't need to ship an entire fork, but all the tree internals that you are using (splitter etc.) are part of a private API so yes, you would need to duplicate these into your own implementation. Nicolas On 11/3/20 4:38 PM, Mick Men wrote: Hello, I am trying to impleme

[scikit-learn] implementing regularized random forest

2020-11-03 Thread Mick Men
Hello, I am trying to implement my own regularized random forest (RRF) which grows trees in series and selects new features only if they are better than the features used in previous splits. This is for a research project and I will need to ship the code with the publication. So far I have a wor