I'm new to cuML
and I have a decision tree classifier using scikit learn. I would like to perform some hyperparameter search using the GPU, so I started looking cuML
. There is no DecisionTreeClassifier
in cuML, but it can be reproduced by using RandomForestClassifier
with 1 tree and no bootstrap, as far as I read on other SO posts.
My problem is how can I extract the tree and all the rules (the leafs and nodes) using cuML
RandomForestClassifier
? Or I should be looking to other algorithms like XGBoost
?
Access to the underlying decision trees or information isn't necessary to do hyperparameter optimization.
With that said, you can access summary information about the underlying trees and leaf predictions like this: