Uses of Class
info.debatty.java.stringsimilarity.ShingleBased

Packages that use ShingleBased
Package
Description
 
  • Uses of ShingleBased in info.debatty.java.stringsimilarity

    Modifier and Type
    Class
    Description
    class 
    The similarity between the two strings is the cosine of the angle between these two vectors representation.
    class 
    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 
    Q-gram distance, as defined by Ukkonen in "Approximate string-matching with q-grams and maximal matches".
    class 
    Similar to Jaccard index, but this time the similarity is computed as 2 * |V1 inter V2| / (|V1| + |V2|).