Model Info#

This notebook provides an overview for using and understanding the Model Info check.

Structure:

What is the Model Info check?#

The ModelInfo check produces a summary for the model parameters (number of estimators, learning rate, verbosity etc.).

Imports#

from sklearn.ensemble import AdaBoostClassifier

from deepchecks.tabular.checks import ModelInfo

Run the check#

clf = AdaBoostClassifier(learning_rate=1.2)
ModelInfo().run(clf)
Model Info


Total running time of the script: ( 0 minutes 0.040 seconds)

Gallery generated by Sphinx-Gallery