After prediction, feature_importances_
( specifically of GradientBoostingClassifier
but may exist for other methods ) holds the feature importances. According to the documentation, the higher, the more important the feature is.
Do you know what do the numbers returned mean?
I get values ranging from 0.02 to 10^-6 or 0.
If a feature has 0.02 importance, then it's importance is 2% out of all features, but how does this relate to prediction accuracy or prediction correlation? Can I interpret this number and understand how the removal of such feature would effect the prediction?