17 lines
454 B
Python
17 lines
454 B
Python
|
"""The :mod:`sklearn.inspection` module includes tools for model inspection."""
|
||
|
|
||
|
|
||
|
from ._permutation_importance import permutation_importance
|
||
|
from ._plot.decision_boundary import DecisionBoundaryDisplay
|
||
|
|
||
|
from ._partial_dependence import partial_dependence
|
||
|
from ._plot.partial_dependence import PartialDependenceDisplay
|
||
|
|
||
|
|
||
|
__all__ = [
|
||
|
"partial_dependence",
|
||
|
"permutation_importance",
|
||
|
"PartialDependenceDisplay",
|
||
|
"DecisionBoundaryDisplay",
|
||
|
]
|