Jeans equations: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Helpful Pixie Bot
m ISBNs (Build KE)
 
No edit summary
Line 1: Line 1:
<br><br>Heгe is my homepage [http://onlineadvisorinc.com/__media__/js/netsoltrademark.php?d=thecasinofinder.com Online poker]
{{Multiple issues|sections=October 2012|lead missing=November 2010|onesource=November 2010| refimprove = November 2010}}
'''Second-order co-occurrence pointwise mutual information''' is a [[semantic similarity]] measure using [[pointwise mutual information]] to sort lists of important neighbor words of the two target words from a large corpus. PMI-IR{{clarify|date=November 2010}} used [[AltaVista]]'s Advanced Search query syntax to calculate [[probability|probabilities]]. Note that the ``NEAR" search
operator of AltaVista is an essential operator in the PMI-IR method.{{cn|date=January 2011}} However, it is no longer in use in AltaVista; this means that, from the implementation point of view, it is not possible to use the PMI-IR method in the same form in new systems. In any case, from the algorithmic point of view, the advantage of using SOC-PMI is that it can calculate the similarity between two words that do not co-occur frequently, because they co-occur with the same neighboring words. For example, the [[British National Corpus]] (BNC) has been used as a source of frequencies and contexts. The method considers the words that are common in both lists and aggregate their PMI values (from the opposite list) to calculate the relative semantic similarity.  We define the ''pointwise mutual information'' function for only those words having <math>f^b (t_i, w)>0</math>,
 
:<math>
f^\text{pmi}(t_i,w)=\log_2 \frac{f^b (t_i,w)\times m}{f^t (t_i)f^t (w)},
</math>
 
where <math>f^t (t_i)</math> tells us how many times the type <math>t_i</math> appeared in the entire corpus, <math>f^b(t_i, w)</math> tells us how many times word <math>t_i</math> appeared with word <math>w</math> in a context window and <math>m</math> is total number of tokens in the corpus. Now, for word <math>w</math>, we define a set of words, <math>X^w</math>, sorted in descending order by their PMI values with <math>w</math> and taken the top-most <math>\beta</math> words having <math>f^\text{pmi}(t_i, w)>0</math>.
 
The set <math>X^w</math>, contains words  <math>X_i^w</math>,
:<math>X^w=\{X_i^w\}</math>, where <math>i=1, 2, \ldots ,\beta</math>  and
:<math>f^\text{pmi}(X_1^w, w)\geq f^\text{pmi}(X_2^w, w)\geq \cdots f^\text{pmi}(X_{\beta-1}^w, w)\geq f^\text{pmi}(X_\beta^w, w)</math>
 
A [[rule of thumb]] is used to choose the value of <math>\beta</math>. The ''<math>\beta</math>-PMI summation'' function of a word is defined with respect to another word. For word <math>w_1</math> with respect to word <math>w_2</math> it is:
 
: <math>
f(w_1,w_2,\beta)=\sum_{i=1}^\beta (f^\text{pmi}(X_i^{w_1},w_2))^\gamma
</math>
 
where <math>f^\text{pmi}(X_i^{w_1},w_2)>0</math> which sums all the positive PMI values of words in the set <math>X^{w_2}</math>  also common to the words in the set <math>X^{w_1}</math>. In other words, this function actually aggregates the positive PMI values of all the semantically close words of <math>w_2</math> which are also common in <math>w_1</math>'s list. <math>\gamma</math> should have a value greater than 1.  So, the ''<math>\beta</math>-PMI summation'' function for word <math>w_1</math> with respect to word <math>w_2</math> having <math>\beta=\beta_1</math> and the ''<math>\beta</math>-PMI summation'' function for word <math>w_2</math> with respect to word <math>w_1</math> having <math>\beta=\beta_2</math> are
 
: <math>
f(w_1,w_2,\beta_1)=\sum_{i=1}^{\beta_1}(f^\text{pmi}(X_i^{w_1},w_2))^\gamma
</math>
 
and
 
: <math>
f(w_2,w_1,\beta_2)=\sum_{i=1}^{\beta_2}(f^\text{pmi}(X_i^{w_2},w_1))^\gamma </math>
 
respectively.
 
Finally, the ''semantic PMI similarity'' function between the two words, <math>w_1</math> and <math>w_2</math>, is defined as
 
: <math>
\mathrm{Sim}(w_1,w_2)=\frac{f(w_1,w_2,\beta_1)}{\beta_1}+\frac{f(w_2,w_1,\beta_2)}{\beta_2}.
</math>
 
The semantic word similarity is normalized, so that it provides a similarity score between <math>0</math> and <math>1</math> inclusively. The normalization of semantic similarity algorithm returns a normalized score of similarity between two words. It takes as arguments the two words, <math>r_i</math> and <math>s_j</math>, and a maximum value, <math>\lambda</math>, that is returned by the semantic similarity function, Sim(). It returns a similarity score between 0 and 1 inclusively. For example, the algorithm returns 0.986 for words ''cemetery'' and ''graveyard'' with <math>\lambda=20</math> (for SOC-PMI method).
 
==References==
 
* Islam, A. and Inkpen, D. (2008). [http://doi.acm.org/10.1145/1376815.1376819 Semantic text similarity using corpus-based word similarity and string similarity]. ACM Trans. Knowl. Discov. Data 2, 2 (Jul. 2008), 1–25.
* Islam, A. and Inkpen, D. (2006). [http://www.site.uottawa.ca/~mdislam/publications/LREC_06_242.pdf Second Order Co-occurrence PMI for Determining the Semantic Similarity of Words], in Proceedings of the International Conference on Language Resources and Evaluation (LREC 2006), Genoa, Italy, pp.&nbsp;1033–1038.
 
{{DEFAULTSORT:Second-Order Co-Occurrence Pointwise Mutual Information}}
[[Category:Computational linguistics]]
[[Category:Statistical distance measures]]

Revision as of 17:30, 20 April 2013

Template:Multiple issues Second-order co-occurrence pointwise mutual information is a semantic similarity measure using pointwise mutual information to sort lists of important neighbor words of the two target words from a large corpus. PMI-IRTemplate:Clarify used AltaVista's Advanced Search query syntax to calculate probabilities. Note that the ``NEAR" search operator of AltaVista is an essential operator in the PMI-IR method.Template:Cn However, it is no longer in use in AltaVista; this means that, from the implementation point of view, it is not possible to use the PMI-IR method in the same form in new systems. In any case, from the algorithmic point of view, the advantage of using SOC-PMI is that it can calculate the similarity between two words that do not co-occur frequently, because they co-occur with the same neighboring words. For example, the British National Corpus (BNC) has been used as a source of frequencies and contexts. The method considers the words that are common in both lists and aggregate their PMI values (from the opposite list) to calculate the relative semantic similarity. We define the pointwise mutual information function for only those words having ,

where tells us how many times the type appeared in the entire corpus, tells us how many times word appeared with word in a context window and is total number of tokens in the corpus. Now, for word , we define a set of words, , sorted in descending order by their PMI values with and taken the top-most words having .

The set , contains words ,

, where and

A rule of thumb is used to choose the value of . The -PMI summation function of a word is defined with respect to another word. For word with respect to word it is:

where which sums all the positive PMI values of words in the set also common to the words in the set . In other words, this function actually aggregates the positive PMI values of all the semantically close words of which are also common in 's list. should have a value greater than 1. So, the -PMI summation function for word with respect to word having and the -PMI summation function for word with respect to word having are

and

respectively.

Finally, the semantic PMI similarity function between the two words, and , is defined as

The semantic word similarity is normalized, so that it provides a similarity score between and inclusively. The normalization of semantic similarity algorithm returns a normalized score of similarity between two words. It takes as arguments the two words, and , and a maximum value, , that is returned by the semantic similarity function, Sim(). It returns a similarity score between 0 and 1 inclusively. For example, the algorithm returns 0.986 for words cemetery and graveyard with (for SOC-PMI method).

References