scikit-learn selection wrappers.
FEATURES_SELECTION table in specs. Registered under sklearn. hub keys, mirroring the native TuiML features/selection family.Classes
class sklearn.features.selection.GenericUnivariateSelect(_SklearnSelectorMixin, FeatureSelector)
scikit-learn GenericUnivariateSelect (hub key sklearn.GenericUnivariateSelect).
GenericUnivariateSelect. 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, )
scikit-learn SelectFdr (hub key sklearn.SelectFdr).
SelectFdr. 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, )
scikit-learn SelectFpr (hub key sklearn.SelectFpr).
SelectFpr. 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, )
scikit-learn SelectFwe (hub key sklearn.SelectFwe).
SelectFwe. 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, )
scikit-learn SelectKBest (hub key sklearn.SelectKBest).
Wraps SelectKBest. 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: k, score_func.
__init__( self, **params, )
class sklearn.features.selection.SelectPercentile(_SklearnSelectorMixin, FeatureSelector)
scikit-learn SelectPercentile (hub key sklearn.SelectPercentile).
Wraps SelectPercentile. 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: percentile, score_func.
__init__( self, **params, )
class sklearn.features.selection.VarianceThreshold(_SklearnSelectorMixin, FeatureSelector)
scikit-learn VarianceThreshold (hub key sklearn.VarianceThreshold).
Wraps VarianceThreshold. 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: threshold.
__init__( self, **params, )