scikit-learn imputation wrappers.
PREPROCESSING_IMPUTATION table in specs. Registered under sklearn. hub keys, mirroring the native TuiML preprocessing/imputation family.Classes
class sklearn.preprocessing.imputation.IterativeImputer(_SklearnTransformerMixin, Transformer)
scikit-learn IterativeImputer (hub key sklearn.IterativeImputer).
Wraps IterativeImputer. 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: max_iter, random_state.
__init__( self, **params, )
scikit-learn KNNImputer (hub key sklearn.KNNImputer).
Wraps KNNImputer. 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_neighbors, weights.
__init__( self, **params, )
class sklearn.preprocessing.imputation.MissingIndicator(_SklearnTransformerMixin, Transformer)
scikit-learn MissingIndicator (hub key sklearn.MissingIndicator).
MissingIndicator. 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.imputation.SimpleImputer(_SklearnTransformerMixin, Transformer)
scikit-learn SimpleImputer (hub key sklearn.SimpleImputer).
Wraps SimpleImputer. 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: strategy, fill_value.
__init__( self, **params, )