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