File tree Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 60
60
find_files
61
61
62
62
63
- sklearn integration
64
- -------------------
65
-
66
- .. autosummary::
67
- :toctree: generated/
68
-
69
- FeatureExtractor
70
-
71
-
72
63
Deprecated
73
64
----------
74
65
.. autosummary::
75
66
:toctree: generated/
76
67
68
+ FeatureExtractor
77
69
buf_to_int
78
70
79
71
"""
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ class FeatureExtractor(BaseEstimator, TransformerMixin):
14
14
This class acts as a bridge between feature extraction functions
15
15
and scikit-learn pipelines.
16
16
17
+ .. warning:: The `FeatureExtractor` object is deprecated as of 0.4.2, and will be
18
+ removed in 0.5.
19
+ Instead, use ``sklearn.preprocessing.FunctionTransformer``.
17
20
18
21
Attributes
19
22
----------
@@ -40,10 +43,6 @@ class FeatureExtractor(BaseEstimator, TransformerMixin):
40
43
kwargs : additional keyword arguments
41
44
Parameters to be passed through to `function`
42
45
43
- .. note:: The `FeatureExtractor` object is deprecated as of 0.4.2, and will be
44
- removed in 0.5.
45
- Instead, use ``sklearn.preprocessing.FunctionTransformer``.
46
-
47
46
Examples
48
47
--------
49
48
>>> import sklearn.pipeline
You can’t perform that action at this time.
0 commit comments