M Number of trees to buildD Max Tree Depthp Children sample node probability threshold (= 0 for no split, i.e. based on uniform (0, 1) RNG with respect the the threshold)n Min number of children to sample at each node (if p != 0 then at each node if the split node prob <= p, then sample n children at that node, else sample n + 1 children at that node each node)i.e. if we want just a binary RIT i.e. always 2 children sampled at each node then set p = 0 and n = 2.
In [ ]: