Research Article
Unsupervised Community Detection Algorithm Based on Graph Convolution Network and Social Media
Algorithm 1
Pseudo code of graph segmentation algorithm.
| Input: Network G; the given starting node , the parameter ; | | Output: Subgraph . | | Begin | (1) | Node set: . | | 2. ; N = {} | (2) | Whiledo | | | (3) | For each | | Neigh add the neighbor nodes of into neighbor set Neigh | | End for | (4) | | (5) | | (6) | | (7) | End While | (8) | Construct a subgraph from nodes in set . | | End |
|