Open pieths opened 4 years ago
Commit d5c7c828ef820d681e2cf5e38568177200cb3b3c resolves the issue with split_start='after_transforms'
but it does not fix the issue when the user specifies an integer index as the split_start
value.
When a transform has presteps then the integer index the user specified will not correspond to the index of the transform in the pipeline.
When specifying
split_start='after_transforms'
inCV.fit()
, the user defined transforms are not split up correctly. See the graph created by thefit()
call in the code below.It seems like if a user defined transform has presteps then the split location will not be in the right place. This might also effect splitting the transforms given an integer value.