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

From Cohen Courses
Jump to navigationJump to search
(Created page with 'The Link-Prediction Problem for Social Networks This is not a final version, under construction! == Citation == Liben-Nowell, D. and Kleinberg, J. (2007), The link-prediction …')
 
Line 16: Line 16:
  
 
== Problem Setup ==
 
== Problem Setup ==
 
+
Given a social network <math>G = <V, E></math> in which each edge represents an interaction at a particular time <math>t(e)</math>. For two times <math>t < t^'</math>, <math>G[t, t^']</math> denote the sub-graph of <math>G</math> consisting of all edges representing the interactions happening between <math>t</math> and <math>t^'</math>. A link-prediction problem can be formalized as given four time <math>t_0 < t^'_0 < t_1 < t^'_1</math> and the network <math>G[t_0, t^'_0]</math>, to output or predict a list of edges not present in <math>G[t_0, t^'_0]</math> but appear in the network <math>G[t_1, t^'_1]</math>.
 
 
  
 
== Brief description of the method ==
 
== Brief description of the method ==

Revision as of 15:27, 26 September 2012

The Link-Prediction Problem for Social Networks

This is not a final version, under construction!

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 .

Brief description of the method

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 and is defined as follow:

where is the probability that and co-occur. They have defined the semantic orientation of a phrase as follow:

We can modify the above definition to obtain the following formula:

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.

Related papers

The widely cited 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.

An interesting follow-up paper is Turney and Littman, TOIS 2003 which focuses on evaluation of the technique of using PMI for predicting the semantic orientation of words.