capability__feature_importance#
- capability__feature_importance()[source]#
Capability: the estimator can provide feature importance.
String name:
"capability:feature_importance"Public capability tag
Values: boolean,
True/FalseExample:
TrueDefault:
False
If the tag is
True, the estimator can produce feature importances.Feature importances are queryable by the fitted parameter interface via
get_fitted_params, after callingfitof the respective estimator.If the tag is
False, the estimator does not produce feature importances. The methodget_fitted_paramscan be called, but the list of fitted parameters will not contain feature importances.