You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for quantile regression should emphasize that reproducible predictions are only possible if R's set.seed is called before training the forest using ranger(). R's sample() function is used at the end of ranger() to initialize the random.node.values of the ranger object, which are used by predict.ranger(type = "quantiles"). The potential confusion exists because there are two RNGs - one for R and another for C++.
The documentation for quantile regression should emphasize that reproducible predictions are only possible if R's set.seed is called before training the forest using ranger(). R's sample() function is used at the end of ranger() to initialize the random.node.values of the ranger object, which are used by predict.ranger(type = "quantiles"). The potential confusion exists because there are two RNGs - one for R and another for C++.
See issue #637.
The text was updated successfully, but these errors were encountered: