scikit-learn compatible Python bindings for ranger C++ random forest library
GNU General Public License v3.0
52
stars
7
forks
source link
Enabling `what` parameter from ranger.predict to enable predictions via quantile random forest #157
Open
jmaddalena opened 8 months ago
In the ranger library, the following is presented as the arguments for the
predict
call from the ranger model:The argument
what
is specified as:This can be used to generate estimates of uncertainty via quantile random forest via simulation, as noted in this example in the ranger documentation:
Is there a way to do this in skranger by other means or is this a feature you would consider supporting in the future?