This commit is contained in:
Christian Mantha
2026-03-02 19:10:52 -05:00
commit 2ca0b9ef7c
28907 changed files with 5233713 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
"""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__ = [
"partial_dependence",
"permutation_importance",
"PartialDependenceDisplay",
"DecisionBoundaryDisplay",
]