Class CosineDistance
java.lang.Object
org.apache.commons.text.similarity.CosineDistance
- All Implemented Interfaces:
EditDistance<Double>
,SimilarityScore<Double>
Measures the cosine distance between two character sequences.
It utilizes the CosineSimilarity
to compute the distance. Character sequences
are converted into vectors through a simple tokenizer that works with a regular expression
to split words in a sentence.
For further explanation about Cosine Similarity and Cosine Distance, refer to https://en.wikipedia.org/wiki/Cosine_similarity.
- Since:
- 1.0
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionapply
(CharSequence left, CharSequence right) Compares two CharSequences.
-
Constructor Details
-
CosineDistance
public CosineDistance()
-
-
Method Details
-
apply
Description copied from interface:EditDistance
Compares two CharSequences.- Specified by:
apply
in interfaceEditDistance<Double>
- Specified by:
apply
in interfaceSimilarityScore<Double>
- Parameters:
left
- the first CharSequenceright
- the second CharSequence- Returns:
- The similarity score between two CharSequences
-