Stop pipeline fitting after the last block with fit
method
#131
Labels
internal improvement
This introduces no noticeable changes in the behavior but improves code quality and performance
Milestone
Right now, an
MLPipeline
produces the output of all primitives (blocks) within the pipeline (with the exception of the last primitive and designated output).To save time, we can stop producing the output of blocks once we have reached the last block that can be fitted. To make these changes we can make the following changes:
last_fit_block
.last_fit_block
. If true, then there is no need to produce the output of the current block.The text was updated successfully, but these errors were encountered: