We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb19bd4 commit 038bbc1Copy full SHA for 038bbc1
sklearn/compose/_target.py
@@ -18,17 +18,12 @@
18
)
19
from ..utils._param_validation import HasMethods
20
from ..utils._tags import _safe_tags
21
-from ..utils.metadata_routing import (
22
- _RoutingNotSupportedMixin,
23
-)
24
from ..utils.validation import check_is_fitted
25
26
__all__ = ["TransformedTargetRegressor"]
27
28
29
-class TransformedTargetRegressor(
30
- _RoutingNotSupportedMixin, RegressorMixin, BaseEstimator
31
-):
+class TransformedTargetRegressor(RegressorMixin, BaseEstimator):
32
"""Meta-estimator to regress on a transformed target.
33
34
Useful for applying a non-linear transformation to the target `y` in
0 commit comments