Louvain modularity
The Louvain method for community detection is a method to extract communities from large networks created by Blondel et al. from the University of Louvain. The method is a greedy optimization method that appears to run in time in the number of nodes in the network.
Modularity optimization
The inspiration for this method of community detection is the optimization of modularity as the algorithm progresses. Modularity is a scale value between −0.5 and 1 that measures the relative density of edges inside communities with respect to edges outside communities. Optimizing this value theoretically results in the best possible grouping of the nodes of a given network, however going through all possible iterations of the nodes into groups is impractical so heuristic algorithms are used.In the Louvain Method of community detection, first small communities are found by optimizing modularity locally on all nodes, then each small community is grouped into one node and the first step is repeated. The method is similar to the earlier method by Clauset, Newman and Moore that connects communities whose amalgamation produces the largest increase in modularity.
Algorithm
The value to be optimized is modularity, defined as a value in the range that measures the density of links inside communities compared to links between communities. For a weighted graph, modularity is defined as:where
- represents the edge weight between nodes and ;
- and are the sum of the weights of the edges attached to nodes and, respectively;
- is the sum of all of the edge weights in the graph;
- and are the communities of the nodes; and
- is Kronecker delta function.
First, each node in the network is assigned to its own community. Then for each node, the change in modularity is calculated for removing from its own community and moving it into the community of each neighbor of. This value is easily calculated by two steps: removing from its original community, and inserting to the community of. The two equations are quite similar, and the equation for step is:
Where is sum of all the weights of the links inside the community is moving into, is the sum of all the weights of the links to nodes in the community is moving into, is the weighted degree of, is the sum of the weights of the links between and other nodes in the community that is moving into, and is the sum of the weights of all links in the network. Then, once this value is calculated for all communities is connected to, is placed into the community that resulted in the greatest modularity increase. If no increase is possible, remains in its original community. This process is applied repeatedly and sequentially to all nodes until no modularity increase can occur. Once this local maximum of modularity is hit, the first phase has ended.
In the second phase of the algorithm, it groups all of the nodes in the same community and builds a new network where nodes are the communities from the previous phase. Any links between nodes of the same community are now represented by self-loops on the new community node and links from multiple nodes in the same community to a node in a different community are represented by weighted edges between communities. Once the new network is created, the second phase has ended and the first phase can be re-applied to the new network.
Previous uses
- Twitter social Network by Josep Pujol, Vijay Erramilli, and Pablo Rodriguez: The authors explore the problem of partitioning Online Social Networks onto different machines.
- Mobile phone Network by Derek Greene, Donal Doyle, and Padraig Cunningham: Community-tracking strategies for identifying dynamic communities of different dynamic social networks.
- Detecting species in network-based dynamical model.
Comparison to other methods
The compared methods are, the algorithm of Clauset, Newman, and Moore, Pons and Latapy, and Wakita and Tsurumi.
Karate | Arxiv | Internet | Web nd.edu | Phone | Web uk-2005 | Web WebBase 2001 | |
Nodes/links | 34/77 | 9k/24k | 70k/351k | 325k/1M | 2.6M/6.3M | 39M/783M | 118M/1B |
Clauset, Newman, and Moore | .38/0s | .772/3.6s | .692/799s | .927/5034s | -/- | -/- | -/- |
Pons and Latapy | .42/0s | .757/3.3s | .729/575s | .895/6666s | -/- | -/- | -/- |
Wakita and Tsurumi | .42/0s | .761/0.7s | .667/62s | .898/248s | .56/464s | -/- | -/- |
Louvain Method | .42/0s | .813/0s | .781/1s | .935/3s | .769/134s | .979/738s | .984/152mn |
-/- in the table refers to a method that took over 24hrs to run. This table shows that the Louvain method outperforms many similar modularity optimization methods in both the modularity and the time categories.
Directed graphs
To deal with directed graphs, Leicht and Newman designed the directed modularity.where resp. are the sum of the weights of the arcs that go to resp. comes from.
Dugué and Perez used the Louvain algorithm to optimize the directed modularity to emphasize the performance of the algorithm and show the relevance of this modularity version on directed graphs.