Definitions and Preliminaries

-
Definition 1 (Network)
, A basic network
, the node set
, the edge set
, the neighborhood of a node
denotes an dimensional adjacency matrix, where if ; otherwise, .
If , is a directed network and an undirected network otherwise.
If is weighted by , is a weighted network and unweighted network otherwise.
If 's value differs in +1 (positive) and -1 (negative), is a signed network[1].
If node is attributed by , is an attributed network; otherwise, it is an unattributed network[2].
-
Definition 2 (Community)
, a set of communities,
Each community is a partition(划分) of that has a regional structure(区域结构) and some cluster properties(聚类性质).
A node clustered into community should satisfy the condition that the internal node degree[3] inside the community exceeds its external degree.
Suppose , denotes disjoint communities; otherwise, overlapping communities.
-
Community Detection Input
the network topology and network attributes
-
Community Detection Output
a set of communities that can be either disjoint or overlapping
Convolutional Network-Based Community Detection
-
CNN-Based Community Detection
-
GCN-Based Community Detection
GCNs were designed for graph-structured data. The layer-wise propagation rule for a GCN is
where the latent representations of the th layer are preserved in the matrix through an activation function with a layer-specific trainable weight matrix . Here, , where denotes the identity matrix, and .
<<<<<<< HEAD-
Community clustering with unsupervised network representation.
=======- Community clustering with unsupervised network representation.
-
Hierarchical Networks
d458109d25b68b76821b68eb3978bd202b084e46
符号网络(Signed Network)是一种特殊类型的网络,其中不仅包含传统的无向或有向的边来表示实体(如人、组织、国家等)之间的关系,而且这些边带有正负符号,用以表示关系的类型是积极的(如友谊、合作)还是消极的(如敌意、竞争)。符号网络能够更准确地反映现实世界中的复杂关系,因为现实世界中的许多关系不仅仅是连接的存在与否,还包括连接的性质。 ↩︎
属性网络(Attributed Network)是一种网络数据结构,其中节点(顶点)和/或边(连接线)不仅由其在网络中的位置定义,还由关联的属性(特征)定义。这些属性可以是各种类型的信息,如文本、数字、类别或任何可以描述节点或边的实值数据。 ↩︎
节点的度(Degree)是指与该节点直接相连的边的数量。它是描述节点连接水平的一个基本指标。 ↩︎