cl-random-forest icon indicating copy to clipboard operation
cl-random-forest copied to clipboard

Use the recommended default value for parameter tuning

Open guicho271828 opened this issue 4 years ago • 0 comments

https://www.hackerearth.com/ja/practice/machine-learning/machine-learning-algorithms/tutorial-random-forest-parameter-tuning-r/tutorial/

About 1/3 of the rows from D1 are left out, known as Out of Bag(OOB) samples. Out of p columns, P << p columns are selected at each node in the data set. The P columns are selected at random. Usually, the default choice of P is p/3 for regression tree and P is sqrt(p) for classification tree.

guicho271828 avatar Aug 23 '19 19:08 guicho271828