Jaro-Winkler Distance
Posted 风云力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jaro-Winkler Distance相关的知识,希望对你有一定的参考价值。
发现commons-lang 中有实现:
StringUtils.class
public static double getJaroWinklerDistance(final CharSequence first, final CharSequence second) {
final double DEFAULT_SCALING_FACTOR = 0.1;
if (first == null || second == null) {
throw new IllegalArgumentException("Strings must not be null");
}
final double jaro = score(first,second);
final int cl = commonPrefixLength(first, second);
final double matchScore = Math.round((jaro + (DEFAULT_SCALING_FACTOR * cl * (1.0 - jaro))) *100.0)/100.0;
return matchScore;
}
以上是关于Jaro-Winkler Distance的主要内容,如果未能解决你的问题,请参考以下文章
带有 Jaro-Winkler 相似距离算法的 EF Core
Frechlet Inception Distance(FID)快速入门使用代码