Difference between revisions of "M. Kim and J. Leskovec. ICML'12"

From Cohen Courses
Jump to navigationJump to search
Line 12: Line 12:
 
[[File:KimLeskovec.png]]
 
[[File:KimLeskovec.png]]
 
</p>
 
</p>
 +
 
<p>On the figure above, <math>N</math>, <math>L</math>, <math>K</math> is the number of users, number of user feature categories, and number of blocks respectively. The block membership probability of node <math>i</math> at bloc <math>k</math> is <math>\phi_{ik}\in [0, 1]</math>. Note that this model does not require <center><math>\sum_{k}\phi_{ik}= 1</math></center>.
 
<p>On the figure above, <math>N</math>, <math>L</math>, <math>K</math> is the number of users, number of user feature categories, and number of blocks respectively. The block membership probability of node <math>i</math> at bloc <math>k</math> is <math>\phi_{ik}\in [0, 1]</math>. Note that this model does not require <center><math>\sum_{k}\phi_{ik}= 1</math></center>.
 
*For each node <math>i</math>, and each block <math>k</math>, <math>\phi_{ik}</math> is generated from [http://en.wikipedia.org/wiki/Beta_distribution Beta distribution]: <center><math> \phi_{ik}\sim Beta(\alpha_{k1},\alpha_{k2})</math></center>
 
*For each node <math>i</math>, and each block <math>k</math>, <math>\phi_{ik}</math> is generated from [http://en.wikipedia.org/wiki/Beta_distribution Beta distribution]: <center><math> \phi_{ik}\sim Beta(\alpha_{k1},\alpha_{k2})</math></center>
Line 17: Line 18:
 
**The truly block membership of node <math>i</math> at block <math>k</math> is a binary indicator which is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] <center><math>z_{ik}\sim Bernoulli(\phi_{ik})</math></center>
 
**The truly block membership of node <math>i</math> at block <math>k</math> is a binary indicator which is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] <center><math>z_{ik}\sim Bernoulli(\phi_{ik})</math></center>
 
**The features of node <math>i</math> at feature category <math>l</math> is a is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] with the parameter is computed from block membership probabilities using [http://en.wikipedia.org/wiki/Logistic_function Logistic function]
 
**The features of node <math>i</math> at feature category <math>l</math> is a is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] with the parameter is computed from block membership probabilities using [http://en.wikipedia.org/wiki/Logistic_function Logistic function]
<center><math>y_{il} = \frac{1}{1+exp(w_l^T\phi_i)}</math></center>
+
<math>y_{il} = \frac{1}{1+exp(w_l^T\phi_i)}</math>
<center><math>F_{il} \sim Bernoulli(y_{il})</math></center>
+
<math>F_{il} \sim Bernoulli(y_{il})</math>
 
**The link between node <math>i</math> and node <math>j</math> is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] with the parameter is the product of block-wise linking probabilities  
 
**The link between node <math>i</math> and node <math>j</math> is generated from [http://en.wikipedia.org/wiki/Bernoulli_distribution Bernoulli distribution] with the parameter is the product of block-wise linking probabilities  
 
<center><math>p_{ij} = \prod_k\theta_k(z_{ik}, z_{jk})</math></center>
 
<center><math>p_{ij} = \prod_k\theta_k(z_{ik}, z_{jk})</math></center>

Revision as of 14:59, 2 October 2012

This is a scientific paper authored by M. Kim and J. Leskovec, and appeared in ICML'12. Below is the paper summary written by Tuan Anh.

Citation

Online Version

Latent Multi-group Membership Graph Model.

Summary

This is a paper on block based network analysis and prediction. This work furthers the work by Airoldi. et. al (see Related papers) to the extent that each node/ user can actually belong to more than one block and node features are modeled in addition to link existence. The generative process is given as below (see the figure)

KimLeskovec.png

On the figure above, , , is the number of users, number of user feature categories, and number of blocks respectively. The block membership probability of node at bloc is . Note that this model does not require

.

  • For each node , and each block , is generated from Beta distribution:
  • Then
    • The truly block membership of node at block is a binary indicator which is generated from Bernoulli distribution
    • The features of node at feature category is a is generated from Bernoulli distribution with the parameter is computed from block membership probabilities using Logistic function

    • The link between node and node is generated from Bernoulli distribution with the parameter is the product of block-wise linking probabilities

Dicussion

Related papers