Is there any rule of thumb to initialize the num_leaves
parameter in lightgbm
. For example for 1000
featured dataset, we know that with tree-depth
of 10
, it can cover the entire dataset, so we can choose this accordingly, and search space for tuning also get limited.
But in lightgbm
, how we can roughly guess this parameters, otherwise its search space will be pretty large while using grid-search method.
Any intuition on selecting this parameters will be helpful.
-1
, why not just2^tree_depth
? – Valor