SimMetrics
A Java library of similarity and distance metrics e.g. Levenshtein distance and Cosine similarity. All similarity metrics return normalized values rather than unbounded similarity scores. Distance metrics return non-negative unbounded scores.
Usage
For a quick and easy use StringMetrics and StringDistances contain a collection of well known similarity and distance metrics.
String str1 = "This is a sentence. It is made of words";
String str2 = "This sentence is similar. It has almost the same words";
StringMetric metric = StringMetrics.cosineSimilarity();
float result = metric.compare(str1, str2); //0.4767
The StringMetricBuilder and StringDistanceBuilder are convenience tools to build string similarity and distance metrics. Any class implementing Metric or Distance respectively can be used to build a metric. The builders support simplification, tokenization, token-filtering, token-transformation, and caching.
For usage see the examples section.
For a terse syntax use import static org.simmetrics.builders.StringMetricBuilder.with;
String str1 = "This is a sentence. It is made of words";
String str2 = "This sentence is similar. It has almost the same words";
StringMetric metric =
with(new CosineSimilarity<>())
.simplify(Simplifiers.toLowerCase(Locale.ENGLISH))
.simplify(Simplifiers.replaceNonWord())
.tokenize(Tokenizers.whitespace())
.build();
float result = metric.compare(str1, str2); //0.5720
Metrics that operate on lists, sets, or multisets are generic can be used to compare collections of arbitrary elements. The elements in the collection must implement equals and hashcode.
Set<Integer> scores1 = new HashSet<>(asList(1, 1, 2, 3, 5, 8, 11, 19));
Set<Integer> scores2 = new HashSet<>(asList(1, 2, 4, 8, 16, 32, 64));
SetMetric<Integer> metric = new OverlapCoefficient<>();
float result = metric.compare(scores1, scores2); // 0.4285
Unicode
Due to Java's Unicode Character Representations some care must be taken when dealing with texts containing outside Basic Multilingual Plane. Using a metric that compares strings by their char
values will result in an unexpectedly high similarity as every other char is the same high surrogate.
All provided metrics, simplifiers and tokenizers use unicode code points rather then char
values.
When implementing your own tokenizer take care to split the string on code points rather then characters. For example:
String str1 = "๐๐๐๐๐ก";
Tokenizer tokenizer = input -> {
List<String> tokens = new ArrayList<>();
for (int start = 0; start < input.length(); start = input.offsetByCodePoints(start, 1)){
int end = input.offsetByCodePoints(start, 1);
tokens.add(input.substring(start, end));
}
return tokens;
};
List<String> result = tokenizer.tokenizeToList(str1); // [ ๐, ๐, ๐, ๐, ๐ก ]