Stochastic block model

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

The stochastic block model is a generative model for random graphs. This model tends to produce graphs containing communities, subsets characterized by being connected with one another with particular edge densities. For example, edges may be more common within communities than between communities. The stochastic block model is important in statistics, machine learning, and network science, where it serves as a useful benchmark for the task of recovering community structure in graph data.

Definition

The stochastic block model takes the following parameters:

  • The number n of vertices;
  • a partition of the vertex set \{1,\ldots,n\} into disjoint subsets C_1,\ldots,C_r, called communities;
  • a symmetric r \times r matrix P of inter-community edge probabilities.

The edge set is then sampled at random as follows: any two vertices u \in C_i and v \in C_j are connected by an edge with probability P_{ij}.

Special cases

If the probability matrix is a constant, in the sense that P_{ij} = p for all i,j, then the result is the Erdős–Rényi model G(n,p). This case is degenerate—the partition into communities becomes irrelevant—but it illustrates a close relationship to the Erdős–Rényi model.

The planted partition model is the special case that the values of the probability matrix P are a constant p on the diagonal and another constant q off the diagonal. Thus two vertices within the same community share an edge with probability p, while two vertices in different communities share an edge with probability q. Sometimes it is this restricted model that is called the stochastic block model.[1] The case where p > q is called an assortative model, while the case p < q is called dissortative.

Returning to the general stochastic block model, a model is called strongly assortative if P_{ii} > P_{jk} whenever j \neq k: all diagonal entries dominate all off-diagonal entries. A model is called weakly assortative if P_{ii} > P_{ij} whenever i \neq j: each diagonal entry is only required to dominate the rest of its own row and column.[2] Dissortative forms of this terminology exist, by reversing all inequalities. Algorithmic recovery is often easier against block models with assortative or dissortative conditions of this form.[2]

Typical statistical tasks

Much of the literature on algorithmic community detection addresses three statistical tasks: detection, partial recovery, and exact recovery.

Detection

The goal of detection algorithms is simply to determine, given a sampled graph, whether the graph has latent community structure. More precisely, a graph might be generated, with some known prior probability, from a known stochastic block model, and otherwise from a similar Erdős–Rényi model. The algorithmic task is to correctly identify which of these two underlying models generated the graph.[1]

Partial recovery

In partial recovery, the goal is to approximately determine the latent partition into communities, in the sense of finding a partition that is correlated with the true partition significantly better than a random guess.[3]

Exact recovery

In exact recovery, the goal is to recover the latent partition into communities exactly. The community sizes and probability matrix may be known[4] or unknown.[5]

Statistical lower bounds and threshold behavior

Stochastic block models exhibit a sharp threshold effect reminiscent of percolation thresholds.[1][6] Suppose that we allow the size n of the graph to grow, keeping the community sizes in fixed proportions. If the probability matrix remains fixed, tasks such as partial and exact recovery become feasible for all non-degenerate parameter settings. However, if we scale down the probability matrix at a suitable rate as n increases, we observe a sharp phase transition: for certain settings of the parameters, it will become possible to achieve recovery with probability tending to 1, whereas on the opposite side of the parameter threshold, the probability of recovery tends to 0 no matter what algorithm is used.

For partial recovery, the appropriate scaling is to take P_{ij} = \tilde P_{ij} / n for fixed \tilde P, resulting in graphs of constant average degree. In the case of two equal-sized communities, in the assortative planted partition model with probability matrix {\displaystyle  P = \left(\begin{array}{cc} \tilde p/n & \tilde q/n \\ \tilde q/n & \tilde p/n \end{array} \right), } partial recovery is feasible[3] with probability 1 - o(1) whenever (\tilde p - \tilde q)^2 > 2(\tilde p + \tilde q), whereas any estimator fails[1] partial recovery with probability 1-o(1) whenever (\tilde p - \tilde q)^2 < 2(\tilde p + \tilde q).

For exact recovery, the appropriate scaling is to take P_{ij} = \tilde P_{ij} \log n / n, resulting in graphs of logarithmic average degree. Here a similar threshold exists: for the assortative planted partition model with r equal-sized communities, the threshold lies at \sqrt{\tilde p} - \sqrt{\tilde q} = \sqrt{r}. In fact, the exact recovery threshold is known for the fully general stochastic block model.[4]

Algorithms

In principle, exact recovery can be solved in its feasible range using maximum likelihood, but this amounts to solving a constrained or regularized cut problem such as minimum bisection that is typically NP-complete. Hence, no known efficient algorithms will correctly compute the maximum-likelihood estimate in the worst case.

However, a wide variety of algorithms perform well in the average case, and many high-probability performance guarantees have been proven for algorithms in both the partial and exact recovery settings. Successful algorithms include spectral clustering of the vertices,[3][4][7] semidefinite programming,[2][6] and forms of belief propagation,[8] among others.

Variants

Several variants of the model exist. One minor tweak allocates vertices to communities randomly, according to a categorical distribution, rather than in a fixed partition.[4] More significant variants include the censored block model and the mixed-membership block model.

References

  1. 1.0 1.1 1.2 1.3 Lua error in package.lua at line 80: module 'strict' not found.
  2. 2.0 2.1 2.2 Lua error in package.lua at line 80: module 'strict' not found.
  3. 3.0 3.1 3.2 Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 4.2 4.3 Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. 6.0 6.1 Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.