Uses of Class
info.debatty.java.stringsimilarity.ShingleBased
-
Packages that use ShingleBased Package Description info.debatty.java.stringsimilarity -
-
Uses of ShingleBased in info.debatty.java.stringsimilarity
Subclasses of ShingleBased in info.debatty.java.stringsimilarity Modifier and Type Class Description class
Cosine
The similarity between the two strings is the cosine of the angle between these two vectors representation.class
Jaccard
Each input string is converted into a set of n-grams, the Jaccard index is then computed as |V1 inter V2| / |V1 union V2|.class
QGram
Q-gram distance, as defined by Ukkonen in "Approximate string-matching with q-grams and maximal matches".class
SorensenDice
Similar to Jaccard index, but this time the similarity is computed as 2 * |V1 inter V2| / (|V1| + |V2|).
-