scikit-learn scaling wrappers.
PREPROCESSING_SCALING table in specs. Registered under sklearn. hub keys, mirroring the native TuiML preprocessing/scaling family.Classes
scikit-learn Binarizer (hub key sklearn.Binarizer).
Binarizer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.FunctionTransformer(_SklearnTransformerMixin, Transformer)
scikit-learn FunctionTransformer (hub key sklearn.FunctionTransformer).
FunctionTransformer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.KBinsDiscretizer(_SklearnTransformerMixin, Transformer)
scikit-learn KBinsDiscretizer (hub key sklearn.KBinsDiscretizer).
Wraps KBinsDiscretizer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: n_bins, encode, strategy.
__init__( self, **params, )
class sklearn.preprocessing.scaling.MaxAbsScaler(_SklearnTransformerMixin, Transformer)
scikit-learn MaxAbsScaler (hub key sklearn.MaxAbsScaler).
MaxAbsScaler. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.MinMaxScaler(_SklearnTransformerMixin, Transformer)
scikit-learn MinMaxScaler (hub key sklearn.MinMaxScaler).
Wraps MinMaxScaler. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: feature_range.
__init__( self, **params, )
scikit-learn Normalizer (hub key sklearn.Normalizer).
Normalizer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.OneHotEncoder(_SklearnTransformerMixin, Transformer)
scikit-learn OneHotEncoder (hub key sklearn.OneHotEncoder).
Wraps OneHotEncoder. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: handle_unknown, drop, sparse_output.
__init__( self, **params, )
class sklearn.preprocessing.scaling.OrdinalEncoder(_SklearnTransformerMixin, Transformer)
scikit-learn OrdinalEncoder (hub key sklearn.OrdinalEncoder).
OrdinalEncoder. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.PolynomialFeatures(_SklearnTransformerMixin, Transformer)
scikit-learn PolynomialFeatures (hub key sklearn.PolynomialFeatures).
Wraps PolynomialFeatures. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: degree, interaction_only, include_bias.
__init__( self, **params, )
class sklearn.preprocessing.scaling.PowerTransformer(_SklearnTransformerMixin, Transformer)
scikit-learn PowerTransformer (hub key sklearn.PowerTransformer).
PowerTransformer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.QuantileTransformer(_SklearnTransformerMixin, Transformer)
scikit-learn QuantileTransformer (hub key sklearn.QuantileTransformer).
QuantileTransformer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.RobustScaler(_SklearnTransformerMixin, Transformer)
scikit-learn RobustScaler (hub key sklearn.RobustScaler).
Wraps RobustScaler. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: with_centering, with_scaling, quantile_range.
__init__( self, **params, )
class sklearn.preprocessing.scaling.SplineTransformer(_SklearnTransformerMixin, Transformer)
scikit-learn SplineTransformer (hub key sklearn.SplineTransformer).
SplineTransformer. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )
class sklearn.preprocessing.scaling.StandardScaler(_SklearnTransformerMixin, Transformer)
scikit-learn StandardScaler (hub key sklearn.StandardScaler).
Wraps StandardScaler. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.
Commonly set: with_mean, with_std.
__init__( self, **params, )
class sklearn.preprocessing.scaling.TargetEncoder(_SklearnTransformerMixin, Transformer)
scikit-learn TargetEncoder (hub key sklearn.TargetEncoder).
TargetEncoder. Accepts that estimator's constructor parameters as keyword arguments; call get_parameter_schema for the full list with types and defaults derived from the installed scikit-learn.__init__( self, **params, )