stringdistance icon indicating copy to clipboard operation
stringdistance copied to clipboard

A fuzzy matching string distance library for Scala and Java that includes Levenshtein distance, Jaro distance, Jaro-Winkler distance, Dice coefficient, N-Gram similarity, Cosine similarity, Jaccard si...

Results 16 stringdistance issues
Sort by recently updated
recently updated
newest added

Published maven artifacts, that contain documentation, can usually be found on javadoc.io. For example, the same documentation hosted on the github.io page and linked from the README.md, can be found...

question

Though the `.util` Java package wrapper class, `StringDistince`, calls the same underlying implementation as the Scala version, there is a chance of missing parameters/incorrect syntax with the wrapper that could...

enhancement
help wanted

The class that stores test case information needs to be refactored: https://github.com/vickumar1981/stringdistance/blob/master/src/test/scala/fixtures/TestCases.scala#L6 `TestCase` and `TestSoundCase` are case classes with value members: `Option[T]` where `T` is either an `Int` or `Double`...

enhancement

The following are the sequencing algorithms which are implemented: Needleman-Wunsh: https://en.wikipedia.org/wiki/Needleman%E2%80%93Wunsch_algorithm Smith-Waterman & Smith-Waterman-Gotoh: https://en.wikipedia.org/wiki/Smith%E2%80%93Waterman_algorithm Need to add more tests/examples to make sure these implementations are working as expected. https://github.com/vickumar1981/stringdistance/blob/master/src/test/scala/TestStringDistance.scala#L132

enhancement
help wanted

Should automate pushing to the sonatype repo - should be tied into the git tag. i.e., if the current version of the software is `99.99.0`, then: ``` git commit -a...

enhancement

Hey, I just want to confirm - is the library thread-safe or not? Thanks