Report for a single estimator#
The class EstimatorReport
provides a report allowing to inspect and
evaluate a scikit-learn estimator in an interactive way. The functionalities of the
report are accessible through accessors.
|
Report for a fitted estimator. |
Methods
Display available methods using rich. |
|
Cache estimator's predictions. |
|
Clear the cache. |
|
|
Get estimator's predictions. |
Metrics
Accessor for metrics-related operations. |
Feature importance
Accessor for feature importance related operations. |
Metrics#
The metrics
accessor helps you to evaluate the statistical performance of your
estimator.
Display available methods using rich. |
|
Report a set of metrics for our estimator. |
|
Compute a custom metric. |
|
Get all measured processing times related to the estimator. |
|
Compute the accuracy score. |
|
Compute the Brier score. |
|
Compute the log loss. |
|
Compute the precision score. |
|
Plot the precision-recall curve. |
|
Plot the prediction error of a regression model. |
|
Compute the R² score. |
|
Compute the recall score. |
|
Compute the root mean squared error. |
|
Plot the ROC curve. |
|
Compute the ROC AUC score. |
Feature importance#
The feature_importance
accessor helps you to evaluate the importance of the features
used to train your estimator.
Display available methods using rich. |
|
Retrieve the coefficients of a linear model, including the intercept. |
|
Retrieve the mean decrease impurity (MDI) of a tree-based model. |
|
Report the permutation feature importance. |