fix: prevent ZeroDivisionError in token-based algorithms for short sequences - #97
Open
gaoflow wants to merge 1 commit into
Open
fix: prevent ZeroDivisionError in token-based algorithms for short sequences#97gaoflow wants to merge 1 commit into
gaoflow wants to merge 1 commit into
Conversation
…rter than qval When qval > 1 and the input sequence is shorter than qval characters, find_ngrams returns an empty list, causing _get_sequences to produce empty sequences. Token-based algorithms (Jaccard, Sorensen, Overlap, Cosine, Tversky) then divide by zero when computing intersection/denominator. Fall back to individual characters via list(s) when n-gram extraction yields no n-grams, preserving the information in the input sequence rather than silently treating it as empty.
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.
When
qval > 1and an input sequence has fewer charactersthan
qval,find_ngrams()returns an empty list. Token-basedsimilarity algorithms (Jaccard, Sorensen, Overlap, Cosine,
Tversky) crash with
ZeroDivisionErrorbecause the emptyn-gram lists produce zero denominators.
Fix (+1 char):
find_ngrams(s, self.qval) or list(s)—when n-gram extraction yields nothing for a non-empty sequence,
fall back to individual characters. This preserves the intended
semantics: short strings are compared by their constituent
characters instead of being silently treated as empty.
Reproduction:
404/404 tests pass (26 hypothesis deadline flakes pre-existing).
This pull request was prepared with the assistance of AI, under my
direction and review.