This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
One fit_transform
call on the pipeline may result in multiple fit_transform
calls on some steps
#24
Labels
Consider 3 steps A, B, C, connected like this: A -> B, B -> C, A -> C. Say, we fit this pipeline by calling
C.fit_transform(...)
. If A is initialized withforce_fitting
option, then itsfit_transform
method will be called twice, which is undesirable behavior. Even whenforce_fitting
is False, transform is going to be called twice, which might require reconsidaration.The text was updated successfully, but these errors were encountered: