ENH CountVectorizer: sort features after pruning by frequency#15834
Merged
Conversation
jnothman
approved these changes
Dec 8, 2019
jnothman
left a comment
Member
There was a problem hiding this comment.
Great idea! Not sure how we missed this when we cleaned this code up a couple of years ago...
Please add an Efficiency entry to the change log at doc/whats_new/v0.23.rst. Like the other entries there, please reference this pull request with :pr: and credit yourself (and other contributors if applicable) with :user:
In CountVectorizer, sort features after pruning by frequency. When using min_df or max_df with large vocabularies, this can be a significant speed up.
24d8ce7 to
e1c402f
Compare
Contributor
Author
|
@jnothman Thank you for the review. I have rebased and added the changelog entry. |
Member
|
No need to rebase. Please just append commits. Awaiting another review. |
rth
approved these changes
Dec 10, 2019
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.
In CountVectorizer, sort features after pruning by frequency.
When using min_df or max_df with large vocabularies, this can
be a significant speed up.
Here's a simple benchmark:
and example results before the change:
and after the change: