Opt/encoders/small transform - #13
Open
cakedev0 wants to merge 5 commits into
Open
Conversation
This was referenced Aug 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reference Issues/PRs
See also scikit-learn#32368, which proposes a similar small-batch fast path but specific to
TargetEncoder. This PR implements the same idea more generally, at the_check_X/_encodelevel shared byOneHotEncoder,OrdinalEncoderandTargetEncoder(they all go through_BaseEncoder._transform).What does this implement/fix? Explain your changes.
Speeds up repeated small-batch
transformcalls (e.g. scoring one row at a time in a serving loop) forOneHotEncoder,OrdinalEncoderandTargetEncoder.To achieve that, I cache the mapping used by
_encodefor the object arrays path through_map_to_integer(other paths are: numerical arrays & non-numerical Series). This mappinguniques -> indexcosts O(n_categories) to build, it's what makes this path slow.Any sized objects arrays will benefit from this optimization.
The Series path has the same problem, so I make
_check_Xconvert small pandas/polars inputs to arrays so it can benefit from this exact same optimization.The numerical path doesn't suffer from such an O(n_categories) cost, so it's left unchanged.
AI usage disclosure
I don't remember 😅
Benchmarks
TODO: benchmarks to follow.