scikit-learn/sklearn/feature_selection/__init__.py

39 lines
1.1 KiB
Python
Raw Normal View History

"""
The :mod:`sklearn.feature_selection` module implements feature selection
algorithms. It currently includes univariate filter selection methods and the
recursive feature elimination algorithm.
"""
2010-09-18 02:33:22 +08:00
2011-07-22 22:21:21 +08:00
from .univariate_selection import chi2
2010-09-18 02:33:22 +08:00
from .univariate_selection import f_classif
from .univariate_selection import f_oneway
2010-09-18 02:33:22 +08:00
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
2012-08-23 05:20:49 +08:00
from .from_model import SelectFromModel
2012-08-23 05:20:49 +08:00
__all__ = ['GenericUnivariateSelect',
'RFE',
'RFECV',
'SelectFdr',
'SelectFpr',
'SelectFwe',
'SelectKBest',
'SelectPercentile',
'VarianceThreshold',
2012-08-23 05:20:49 +08:00
'chi2',
'f_classif',
'f_oneway',
'f_regression',
'SelectFromModel']