Difference between revisions of "Liben-Nowell Kleinberg J. Am.Soc.Inf.Sci.2007"

From Cohen Courses
Jump to navigationJump to search
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
The Link-Prediction Problem for Social Networks
 
The Link-Prediction Problem for Social Networks
 
This is not a final version, under construction!
 
  
 
== Citation ==
 
== Citation ==
Line 23: Line 21:
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
| Methods Based on Node Neighborhoods || common neighbors, Jaccard's coefficient, Adamic/Adar, Preferential Attachment
+
| Methods Based on Node Neighborhoods || [[Methods::Common neighbors]], [[Methods::Jaccard's Coefficient]], [[Methods::Adamic/Adar]], [[Methods::Preferential Attachment]]
 
|-
 
|-
| Example || Example
+
| Methods Based on the Ensemble of All Paths || [[Methods::Katz]], [[Methods::Hitting time]]
 
|-
 
|-
| Example || Example
+
| Others || graph distance, [[Methods::SimRank]]
 
|}
 
|}
  
== Brief description of the method ==
+
== Data sets and Experiments ==
The algorithm takes a written review as an input. First it assigns a POS tag to each word in the review to identify adjective or adverb phrases in the input review. They have used PMI-IR algorithm to estimate the semantic orientation of a phrase. The Pointwise Mutual Information (PMI) between two words <math> w_1 </math> and <math> w_2 </math> is defined as follow:
+
The paper works with five co-authorship networks, obtained from the author lists of articles contained in five sections of the physics e-Print arXiv. The training interval is defined to be the 3 years from 1994 through 1996 and test interval to be the 3 years from 1997 through 1999.
  
<math>
+
Each link predictor outputs a ranked list of pairs and the paper takes the first <math>n</math>, which is the number of new links from the test set, and count how many of edges from these <math>n</math> are in the test set.
PMI(w_1,w_2)=log_2(p(w_1\ and\ w_2)/p(w_1)p(w_2))
 
</math>
 
  
where <math> p(w_1,w_2) </math> is the probability that <math> w_1 </math> and <math> w_2 </math> co-occur. They have defined the semantic orientation of a phrase as follow:
+
== Result ==
 +
The performance is compared with a random predictor.
  
<math>
+
[[File:LN_K_2007_Result.jpg]]
SO(phrase)=PMI(phrase,'excellent')-PMI(phrase,'poor')
 
</math>
 
  
We can modify the above definition to obtain the following formula:
+
We can see that Adamic/Adar outperforms other methods and for more detailed results please refer to the paper.
  
<math>
+
== Related papers ==
SO(phrase)=log_2(\frac{hits(phrase\ NEAR\ 'excellent')hits('excellent')}{hits(phrase\ NEAR\ 'poor')hits('poor')} )
+
Most link prediction solutions can fall to two directories, one is to use topological features and the other is to use node or edge information.
</math>
 
 
 
where operator NEAR means that the two phrases should be appeared close to each other in the corpus. Using the above formula they have calculated the average semantic orientation for a review. They have shown that the value of average semantic orientation for phrases in the items that are tagged as "recommended" by the users are usually positive and those that are tagged as "not recommended" are usually negative.
 
 
 
== Experimental Result ==
 
  
This approach was fairly successful on a range of review-classification tasks: it achieved accuracy of between 65% and 85% in predicting an author-assigned "recommended" flag for Epinions ratings for eight diverse products, ranging from cars to movies. Many later writers used several key ideas from the paper, including: treating polarity prediction as a document-classification problem; classifying documents based on likely-to-be-informative phrases; and using unsupervised or semi-supervised learning methods.
+
[[RelatedPaper::Link propagation: A fast semi-supervised learning algorithm for link prediction]] suggests a semi-supervised framework which need a node similarity matrix as input. Many applications like protein-protein interactions and social networks are able to provide this information.
 
 
== Related papers ==
 
  
The widely cited [[RelatedPaper::Pang et al EMNLP 2002]] paper was influenced by this paper - but considers supervised learning techniques.  The choice of movie reviews as the domain was suggested by the (relatively) poor performance of Turney's method on movies.
+
[[RelatedPaper::Supervised Random Walks: Predicting and Recommending Links in Social Networks]] adopts a random walk framework and use edge and node information as features to train a transition rate over each edge to maximize the probability of random walk stopping time on positive nodes.
  
An interesting follow-up paper is [[RelatedPaper::Turney and Littman, TOIS 2003]] which focuses on evaluation of the technique of using PMI for predicting the [[semantic orientation of words]].
+
== Study Plan ==
 +
* About Adamic/Adar score
 +
**[[Paper::Adamic, L.A., & Adar, E. (2003). Friends and neighbors on the Web. Social Networks, 25(3), 211–230]]
 +
* To understand which graph information these features represent
 +
**[[Paper::Davidsen, J., Ebel, H., & Bornholdt, S. (2002). Emergence of a small world from local interactions: Modeling acquaintance networks. Physical Review Letters, 88(128701)]]

Latest revision as of 03:10, 27 September 2012

The Link-Prediction Problem for Social Networks

Citation

Liben-Nowell, D. and Kleinberg, J. (2007), The link-prediction problem for social networks. J. Am. Soc. Inf. Sci., 58: 1019–1031. doi: 10.1002/asi.20591

Online version

PDF

Summary

This paper extensively evaluates many unsupervised methods using topological features of the network for link prediction and compares their performances over different data sets. The result shows that Adamic-Adar, which measures the node similarity, has the best performance.

Problem Setup

Given a social network in which each edge represents an interaction at a particular time . For two times , denote the sub-graph of consisting of all edges representing the interactions happening between and . A link-prediction problem can be formalized as given four time and the network , to output or predict a list of edges not present in but appear in the network .

A List of Methods for Link Prediction

All the following methods assign a connection weight to node pair . We can group them in a less strict way and you can check the definition of each method in its own page.

Methods Based on Node Neighborhoods Common neighbors, Jaccard's Coefficient, Adamic/Adar, Preferential Attachment
Methods Based on the Ensemble of All Paths Katz, Hitting time
Others graph distance, SimRank

Data sets and Experiments

The paper works with five co-authorship networks, obtained from the author lists of articles contained in five sections of the physics e-Print arXiv. The training interval is defined to be the 3 years from 1994 through 1996 and test interval to be the 3 years from 1997 through 1999.

Each link predictor outputs a ranked list of pairs and the paper takes the first , which is the number of new links from the test set, and count how many of edges from these are in the test set.

Result

The performance is compared with a random predictor.

LN K 2007 Result.jpg

We can see that Adamic/Adar outperforms other methods and for more detailed results please refer to the paper.

Related papers

Most link prediction solutions can fall to two directories, one is to use topological features and the other is to use node or edge information.

Link propagation: A fast semi-supervised learning algorithm for link prediction suggests a semi-supervised framework which need a node similarity matrix as input. Many applications like protein-protein interactions and social networks are able to provide this information.

Supervised Random Walks: Predicting and Recommending Links in Social Networks adopts a random walk framework and use edge and node information as features to train a transition rate over each edge to maximize the probability of random walk stopping time on positive nodes.

Study Plan