Note
Go to the end to download the full example code
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)
Total running time of the script: (0 minutes 0.020 seconds)