File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,18 @@ To handle outlier rejector in ``Pipeline``, we enforce the following:
7171 ``fit_transform(X) `` / ``transform(X) ``.
7272* ``fit_predict(X) `` (i.e., clustering methods) should not be called if an
7373 outlier rejector is in the pipeline.
74+ * We propose that resamplers are only applied during fit time. Specifically, the pipeline will act as follows:
75+ ===================== ================================
76+ Method Resamplers applied
77+ ===================== ================================
78+ ``fit `` Yes
79+ ``fit_transform `` Yes
80+ ``transform `` Yes
81+ ``fit_resample `` Yes
82+ ``predict `` No
83+ ``score `` No
84+ ``fit_predict `` not supported
85+ ===================== ================================
7486
7587Backward compatibility
7688----------------------
You can’t perform that action at this time.
0 commit comments