This repository was archived by the owner on Jun 22, 2022. It is now read-only.
This repository was archived by the owner on Jun 22, 2022. It is now read-only.
fit_transform call on the pipeline may result in multiple fit_transform calls on some steps #24
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_fittingoption, then itsfit_transformmethod will be called twice, which is undesirable behavior. Even whenforce_fittingis False, transform is going to be called twice, which might require reconsidaration.