Reference articles on history, science, culture and more
Encyclopedia

Stochastic block model

Concept in network science

Image credit is listed at the end of this article.

The stochastic block model is a generative model for random graphs. This model tends to produce graphs containing communities, subsets of nodes characterized by being connected with one another with particular edge densities. For example, edges may be more common within communities than between communities. Its mathematical formulation was first introduced in 1983 in the field of social network analysis by Paul W. Holland et al. 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.

01Definition

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 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}. An example problem is: given a graph with n vertices, where the edges are sampled as described, recover the groups C_{1},\ldots ,C_{r}.

An example of the assortative case for the stochastic block model.
An example of the assortative case for the stochastic block model.

02Special 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. The case where p>q is called an assortative model, while the case p<q is called disassortative.

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. Disassortative forms of this terminology exist, by reversing all inequalities. For some algorithms, recovery might be easier for block models with assortative or disassortative conditions of this form.

03Typical 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 Erdos-Renyi model. The algorithmic task is to correctly identify which of these two underlying models generated the graph.

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.

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 or unknown.

04Statistical lower bounds and threshold behavior

Stochastic block models exhibit a sharp threshold effect reminiscent of percolation thresholds. 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 P=\left({\begin{array}{cc}{\tilde {p}}/n&{\tilde {q}}/n\\{\tilde {q}}/n&{\tilde {p}}/n\end{array}}\right), partial recovery is feasible with probability 1-o(1) whenever ({\tilde {p}}-{\tilde {q}})^{2}>2({\tilde {p}}+{\tilde {q}}), whereas any estimator fails 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.

05Algorithms

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, semidefinite programming, forms of belief propagation, and community detection among others.

06Variants

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. More significant variants include the degree-corrected stochastic block model, the hierarchical stochastic block model, the geometric block model, censored block model and the mixed-membership block model.

07Topic models

Stochastic block model have been recognised to be a topic model on bipartite networks. In a network of documents and words, Stochastic block model can identify topics: group of words with a similar meaning.

08Extensions to signed graphs

Signed graphs allow for both favorable and adverse relationships and serve as a common model choice for various data analysis applications, e.g., correlation clustering. The stochastic block model can be trivially extended to signed graphs by assigning both positive and negative edge weights or equivalently using a difference of adjacency matrices of two stochastic block models.

09DARPA/MIT/AWS Graph Challenge: streaming stochastic block partition

GraphChallenge encourages community approaches to developing new solutions for analyzing graphs and sparse data derived from social media, sensor feeds, and scientific data to enable relationships between events to be discovered as they unfold in the field. Streaming stochastic block partition is one of the challenges since 2017. Spectral clustering has demonstrated outstanding performance compared to the original and even improved base algorithm, matching its quality of clusters while being multiple orders of magnitude faster.

Watch videos about Stochastic block modelExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Stochastic block model, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Images, from Wikimedia Commons:

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.