stringmetric
stringmetric copied to clipboard
:dart: String metrics and phonetic algorithms for Scala (e.g. Dice/Sorensen, Hamming, Jaccard, Jaro, Jaro-Winkler, Levenshtein, Metaphone, N-Gram, NYSIIS, Overlap, Ratcliff/Obershelp, Refined NYSIIS,...
Do you plan to release a version for Scala `2.12.x` ?
No real changes - just sbt update and change spec2 dependency - no longer supports org.specs2.mutable.SpecificationWithJUnit - changed to org.specs2.mutable.Specification Changed version to 0.27.5 - not sure what the versioning...
Could you create a new release of your library with java 8 compatibility? Thx a lot! Baptiste
for dice/sorensen metric, your example of "night", "natch" you are showing a value of .60, however according to the algorith the expected answer for the same two strings is .25...
0.27.3 works libraryDependencies += "com.rockymadden.stringmetric" %% "stringmetric-core" % "0.27.3" but 0.27.4 doesn't libraryDependencies += "com.rockymadden.stringmetric" %% "stringmetric-core" % "0.27.4" and gives the following error. [info] Resolving com.rockymadden.stringmetric#stringmetric-core_2.10;0.27.4 ... [warn] module...
The current implementation is too slow: it is a recursive algorithm without memoization, which means a lot of states are repeatedly computed. Try this dynamic programming version that guarantees O(mn)...
The [Scaladoc link](https://rockymadden.com/stringmetric/scaladoc/) in the README is returning a 404.