HOME

TheInfoList



OR:

In
data analysis Data analysis is a process of inspecting, cleansing, transforming, and modeling data with the goal of discovering useful information, informing conclusions, and supporting decision-making. Data analysis has multiple facets and approaches, enco ...
, cosine similarity is a measure of similarity between two sequences of numbers. For defining it, the sequences are viewed as vectors in an inner product space, and the cosine similarity is defined as the cosine of the angle between them, that is, the dot product of the vectors divided by the product of their lengths. It follows that the cosine similarity does not depend on the magnitudes of the vectors, but only on their angle. The cosine similarity always belongs to the interval
1, 1 Onekama ( ) is a village in Manistee County in the U.S. state of Michigan. The population was 411 at the 2010 census. The village is located on the shores of Portage Lake and is surrounded by Onekama Township. The town's name is derived from "On ...
For example, two proportional vectors have a cosine similarity of 1, two orthogonal vectors have a similarity of 0, and two opposite vectors have a similarity of -1. The cosine similarity is particularly used in positive space, where the outcome is neatly bounded in ,1/math>. For example, in
information retrieval Information retrieval (IR) in computing and information science is the process of obtaining information system resources that are relevant to an information need from a collection of those resources. Searches can be based on full-text or other co ...
and text mining, each word is assigned a different coordinate and a document is represented by the vector of the numbers of occurrences of each word in the document. Cosine similarity then gives a useful measure of how similar two documents are likely to be, in terms of their subject matter, and independently of the length of the documents. The technique is also used to measure cohesion within clusters in the field of data mining. One advantage of cosine similarity is its low complexity, especially for sparse vectors: only the non-zero coordinates need to be considered. Other names for cosine similarity include Orchini similarity and Tucker coefficient of congruence; the Otsuka–Ochiai similarity (see below) is cosine similarity applied to binary data.


Definition

The cosine of two non-zero vectors can be derived by using the Euclidean dot product formula: :\mathbf\cdot\mathbf =\left\, \mathbf\right\, \left\, \mathbf\right\, \cos\theta Given two vectors of attributes, ''A'' and ''B'', the cosine similarity, , is represented using a dot product and magnitude as :\text =S_C (A,B):= \cos(\theta) = = \frac, where A_i and B_i are
components Circuit Component may refer to: •Are devices that perform functions when they are connected in a circuit.   In engineering, science, and technology Generic systems * System components, an entity with discrete structure, such as an assem ...
of vector A and B respectively. The resulting similarity ranges from −1 meaning exactly opposite, to 1 meaning exactly the same, with 0 indicating
orthogonality In mathematics, orthogonality is the generalization of the geometric notion of ''perpendicularity''. By extension, orthogonality is also used to refer to the separation of specific features of a system. The term also has specialized meanings in ...
or
decorrelation Decorrelation is a general term for any process that is used to reduce autocorrelation within a signal, or cross-correlation within a set of signals, while preserving other aspects of the signal. A frequently used method of decorrelation is the use ...
, while in-between values indicate intermediate similarity or dissimilarity. For text matching, the attribute vectors ''A'' and ''B'' are usually the
term frequency Term may refer to: *Terminology, or term, a noun or compound word used in a specific context, in particular: ** Technical term, part of the specialized vocabulary of a particular field, specifically: *** Scientific terminology, terms used by scien ...
vectors of the documents. Cosine similarity can be seen as a method of normalizing document length during comparison. In the case of
information retrieval Information retrieval (IR) in computing and information science is the process of obtaining information system resources that are relevant to an information need from a collection of those resources. Searches can be based on full-text or other co ...
, the cosine similarity of two documents will range from 0 to 1, since the term frequencies cannot be negative. This remains true when using tf–idf weights. The angle between two term frequency vectors cannot be greater than 90°. If the attribute vectors are normalized by subtracting the vector means (e.g., A - \bar), the measure is called the centered cosine similarity and is equivalent to the Pearson correlation coefficient. For an example of centering, \text\, A = _1, A_2T, \text \bar = \left frac,\frac\rightT, \text A-\bar= \left frac,\frac\rightT. The term cosine distance is commonly used for the complement of cosine similarity in positive space, that is : \text = D_C(A,B) := 1 - S_C(A,B). It is important to note, however, that the cosine distance is not a proper distance metric as it does not have the triangle inequality property—or, more formally, the
Schwarz inequality Schwarz may refer to: * Schwarz, Germany, a municipality in Mecklenburg-Vorpommern, Germany * Schwarz (surname), a surname (and list of people with the surname) * Schwarz (musician), American DJ and producer * ''Schwarz'' (Böhse Onkelz album), ...
—and it violates the coincidence axiom. One way to see this is to note that the cosine distance is half of the squared Euclidean distance of the L_2 normalization of the vectors, and squared Euclidean distance does not satisfy the triangle inequality either. To repair the triangle inequality property while maintaining the same ordering, it is necessary to convert to angular distance or Euclidean distance. Alternatively, the triangular inequality that does work for angular distances can be expressed directly in terms of the cosines; see
below Below may refer to: *Earth *Ground (disambiguation) *Soil *Floor *Bottom (disambiguation) Bottom may refer to: Anatomy and sex * Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
.


Angular distance and similarity

The normalized angle, referred to as angular distance, between any two vectors A and B is a formal distance metric and can be calculated from the cosine similarity. The complement of the angular distance metric can then be used to define angular similarity function bounded between 0 and 1, inclusive. When the vector elements may be positive or negative: :\text = D_ := \frac = \frac :\text = S_ := 1 - \text = 1 - \frac Or, if the vector elements are always positive: :\text = D_ := \frac = \frac :\text = S_ := 1 - \text = 1 - \frac Unfortunately, computing the inverse cosine () function is slow, making the use of the angular distance more computationally expensive than using the more common (but not metric) cosine distance above.


L2-normalized Euclidean distance

Another effective proxy for cosine distance can be obtained by L_2 normalisation of the vectors, followed by the application of normal Euclidean distance. Using this technique each term in each vector is first divided by the magnitude of the vector, yielding a vector of unit length. Then, it is clear, the Euclidean distance over the end-points of any two vectors is a proper metric which gives the same ordering as the cosine distance (a monotonic transformation of Euclidean distance; see
below Below may refer to: *Earth *Ground (disambiguation) *Soil *Floor *Bottom (disambiguation) Bottom may refer to: Anatomy and sex * Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
) for any comparison of vectors, and furthermore avoids the potentially expensive trigonometric operations required to yield a proper metric. Once the normalisation has occurred, the vector space can be used with the full range of techniques available to any Euclidean space, notably standard dimensionality reduction techniques. This normalised form distance is often used within many
deep learning Deep learning (also known as deep structured learning) is part of a broader family of machine learning methods based on artificial neural networks with representation learning. Learning can be supervised, semi-supervised or unsupervised. De ...
algorithms.


Otsuka–Ochiai coefficient

In biology, there is a similar concept known as the Otsuka–Ochiai coefficient named after
Yanosuke Otsuka Yanosuke Otsuka () (11 July 1903 – 7 August 1950) was a Japanese geologist and professor. Yanosuke Otsuka was born in Nihonbashi, Tokyo on 11 July 1903. He went to the Junior High School attached to Tokyo Higher Normal School (), and after th ...
(also spelled as Ōtsuka, Ootsuka or Otuka, ja, 大塚 弥之助) and Akira Ochiai ( ja, 落合 明), also known as the Ochiai–Barkman or Ochiai coefficient, which can be represented as: :K =\frac Here, A and B are sets, and , A, is the number of elements in A. If sets are represented as bit vectors, the Otsuka–Ochiai coefficient can be seen to be the same as the cosine similarity. In a recent book, the coefficient is misattributed to another Japanese researcher with the family name Otsuka. The confusion arises because in 1957 Akira Ochiai attributes the coefficient only to Otsuka (no first name mentioned) by citing an article by Ikuso Hamai ( ja, 浜井 生三), who in turn cites the original 1936 article by Yanosuke Otsuka.


Properties

The most noteworthy property of cosine similarity is that it reflects a relative, rather than absolute, comparison of the individual vector dimensions. For any constant a and vector V, the vectors V and aV are maximally similar. The measure is thus most appropriate for data where frequency is more important than absolute values; notably, term frequency in documents. However more recent metrics with a grounding in information theory, such as Jensen–Shannon, SED, and triangular divergence have been shown to have improved semantics in at least some contexts. Cosine similarity is related to Euclidean distance as follows. Denote Euclidean distance by the usual \, A - B\, , and observe that :\, A - B\, ^2 = (A - B) \cdot (A - B) = \, A\, ^2 + \, B\, ^2 - 2 (A \cdot B)\ (
polarization identity In linear algebra, a branch of mathematics, the polarization identity is any one of a family of formulas that express the inner product of two vectors in terms of the norm of a normed vector space. If a norm arises from an inner product then t ...
) by
expansion Expansion may refer to: Arts, entertainment and media * ''L'Expansion'', a French monthly business magazine * ''Expansion'' (album), by American jazz pianist Dave Burrell, released in 2004 * ''Expansions'' (McCoy Tyner album), 1970 * ''Expansio ...
. When and are normalized to unit length, \, A\, ^2 = \, B\, ^2 = 1 so this expression is equal to :2 (1 - \cos(A, B)). In short, the cosine distance can be expressed in terms of Euclidean distance as :D_C(A, B) = \frac\quad\mathrm\quad\, A\, ^2 = \, B\, ^2 = 1. The Euclidean distance is called the ''chord distance'' (because it is the length of the chord on the unit circle) and it is the Euclidean distance between the vectors which were normalized to unit sum of squared values within them. Null distribution: For data which can be negative as well as positive, the null distribution for cosine similarity is the distribution of the dot product of two independent random unit vectors. This distribution has a mean of zero and a variance of 1/n (where n is the number of dimensions), and although the distribution is bounded between -1 and +1, as n grows large the distribution is increasingly well-approximated by the normal distribution. Other types of data such as bitstreams, which only take the values 0 or 1, the null distribution takes a different form and may have a nonzero mean.


Triangle inequality for cosine similarity

The ordinary triangle inequality for angles (i.e., arc lengths on a unit hypersphere) gives us that :, ~\angle - \angle~, \le ~\angle~ \le ~\angle~ + ~\angle~. Because the cosine function decreases as an angle in radians increases, the sense of these inequalities is reversed when we take the cosine of each value: :\cos(\angle - \angle) \ge \cos(\angle) \ge \cos(\angle + \angle). Using the cosine addition and subtraction formulas, these two inequalities can be written in terms of the original cosines, :\cos(A,C) \cdot \cos(C,B) + \sqrt \geq \cos(A,B), :\cos(A,B) \geq \cos(A,C) \cdot \cos(C,B) - \sqrt. This form of the triangle inequality can be used to bound the minimum and maximum similarity of two objects A and B if the similarities to a reference object C is already known. This is used for example in metric data indexing, but has also been used to accelerate spherical
k-means clustering ''k''-means clustering is a method of vector quantization, originally from signal processing, that aims to partition ''n'' observations into ''k'' clusters in which each observation belongs to the cluster with the nearest mean (cluster centers or ...
the same way the Euclidean triangle inequality has been used to accelerate regular k-means.


Soft cosine measure

A soft cosine or ("soft" similarity) between two vectors considers similarities between pairs of features. The traditional cosine similarity considers the vector space model (VSM) features as independent or completely different, while the soft cosine measure proposes considering the similarity of features in VSM, which help generalize the concept of cosine (and soft cosine) as well as the idea of (soft) similarity. For example, in the field of
natural language processing Natural language processing (NLP) is an interdisciplinary subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language, in particular how to program computers to pro ...
(NLP) the similarity among features is quite intuitive. Features such as words, ''n''-grams, or syntactic ''n''-grams can be quite similar, though formally they are considered as different features in the VSM. For example, words “play” and “game” are different words and thus mapped to different points in VSM; yet they are semantically related. In case of ''n''-grams or syntactic ''n''-grams, Levenshtein distance can be applied (in fact, Levenshtein distance can be applied to words as well). For calculating soft cosine, the matrix is used to indicate similarity between features. It can be calculated through Levenshtein distance, WordNet similarity, or other similarity measures. Then we just multiply by this matrix. Given two -dimension vectors a and b, the soft cosine similarity is calculated as follows: :\begin \operatorname_1(a,b)= \frac, \end where . If there is no similarity between features (, for ), the given equation is equivalent to the conventional cosine similarity formula. The time complexity of this measure is quadratic, which makes it applicable to real-world tasks. Note that the complexity can be reduced to subquadratic. An efficient implementation of such soft cosine similarity is included in the
Gensim Gensim is an open-source library for unsupervised topic modeling, document indexing, retrieval by similarity, and other natural language processing functionalities, using modern statistical machine learning. Gensim is implemented in Python and ...
open source library.


See also

* Sørensen–Dice coefficient * Hamming distance *
Correlation In statistics, correlation or dependence is any statistical relationship, whether causal or not, between two random variables or bivariate data. Although in the broadest sense, "correlation" may indicate any type of association, in statistics ...
* Jaccard index *
SimRank SimRank is a general similarity measure, based on a simple and intuitive graph-theoretic model. SimRank is applicable in any domain with object-to-object relationships, that measures similarity of the structural context in which objects occur, ba ...
*
Information retrieval Information retrieval (IR) in computing and information science is the process of obtaining information system resources that are relevant to an information need from a collection of those resources. Searches can be based on full-text or other co ...


References


External links


Weighted cosine measure

A tutorial on cosine similarity using Python
{{DEFAULTSORT:Cosine Similarity Information retrieval techniques Similarity measures Data analysis