jaccardSimilarity method Null safety
Returns the Jaccard Similarity Index between this term and other
using a k-gram length of k.
Implementation
double jaccardSimilarity(Term other, [int k = 3]) =>
_jaccardSimilarity(kGrams(k), other, k);
Returns the Jaccard Similarity Index between this term and other
using a k-gram length of k.
double jaccardSimilarity(Term other, [int k = 3]) =>
_jaccardSimilarity(kGrams(k), other, k);