Open
Description
Is your feature request related to a problem? Please describe.
RF implementation should support computing feature_importances_
property, just like how it is exposed in sklearn.
Describe the solution you'd like
- By default, we should compute normalized
feature_importances_
(ie. all the importances across the features sum to 1.0) - Implementation that is done in sklearn is here. We have all of this information in our
Node
. We just need to, while building the tree, keep accumulating each feature's importance as we keep adding more nodes.