You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
557 B

"""Tools for model inspection."""
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
from sklearn.inspection._partial_dependence import partial_dependence
from sklearn.inspection._permutation_importance import permutation_importance
from sklearn.inspection._plot.decision_boundary import DecisionBoundaryDisplay
from sklearn.inspection._plot.partial_dependence import PartialDependenceDisplay
__all__ = [
"DecisionBoundaryDisplay",
"PartialDependenceDisplay",
"partial_dependence",
"permutation_importance",
]