Community Detection in complete and weighted networks

后端 未结 1 847
时光说笑
时光说笑 2021-01-15 07:05

I do have a complete network graph where every vertex is connected with each other and they only differ in form of their different weights. A example network would be: a tra

1条回答
  •  借酒劲吻你
    2021-01-15 07:34

    Several methods were suggested.

    One simple yet effective method was suggested in Fast unfolding of communities in large networks (Blondel et al., 2008). It supports weighted networks. Quoting from the abstract:

    We propose a simple method to extract the community structure of large networks. Our method is a heuristic method that is based on modularity optimization. It is shown to outperform all other known community detection method in terms of computation time. Moreover, the quality of the communities detected is very good, as measured by the so-called modularity.

    Quoting from the paper:

    We now introduce our algorithm that finds high modularity partitions of large networks in short time and that unfolds a complete hierarchical community structure for the network, thereby giving access to different resolutions of community detection.

    So it supposed to work well for complete graph, but you should better check it.

    A C++ implementation is available here (now maintained here).

    Your other idea - using weight-threshold - may prove as a good pre-processing step, especially for algorithms which won't partition complete graphs. I believe it is best to set it to some percentile (e.g. to the median) of the weights.

    0 讨论(0)
提交回复
热议问题