We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7fbdd commit 9fedbcdCopy full SHA for 9fedbcd
imblearn/pipeline.py
@@ -28,9 +28,10 @@
28
class Pipeline(pipeline.Pipeline):
29
"""Pipeline of transforms and resamples with a final estimator.
30
31
- Sequentially apply a list of transforms, samples and a final estimator.
+ Sequentially apply a list of transforms, sampling, and a final estimator.
32
Intermediate steps of the pipeline must be transformers or resamplers,
33
that is, they must implement fit, transform and sample methods.
34
+ The samplers are only applied during fit.
35
The final estimator only needs to implement fit.
36
The transformers and samplers in the pipeline can be cached using
37
``memory`` argument.
0 commit comments