35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
"""
|
|
The :mod:`sklearn.feature_selection` module implements feature selection
|
|
algorithms. It currently includes univariate filter selection methods and the
|
|
recursive feature elimination algorithm.
|
|
"""
|
|
|
|
from .univariate_selection import chi2
|
|
from .univariate_selection import f_classif
|
|
from .univariate_selection import f_oneway
|
|
from .univariate_selection import f_regression
|
|
from .univariate_selection import SelectPercentile
|
|
from .univariate_selection import SelectKBest
|
|
from .univariate_selection import SelectFpr
|
|
from .univariate_selection import SelectFdr
|
|
from .univariate_selection import SelectFwe
|
|
from .univariate_selection import GenericUnivariateSelect
|
|
|
|
from .variance_threshold import VarianceThreshold
|
|
|
|
from .rfe import RFE
|
|
from .rfe import RFECV
|
|
|
|
__all__ = ['GenericUnivariateSelect',
|
|
'RFE',
|
|
'RFECV',
|
|
'SelectFdr',
|
|
'SelectFpr',
|
|
'SelectFwe',
|
|
'SelectKBest',
|
|
'SelectPercentile',
|
|
'chi2',
|
|
'f_classif',
|
|
'f_oneway',
|
|
'f_regression']
|