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