Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. X = {x1, … , xN}: a set of data points
  2. S = (sij)i,j=1,…,N: the similarity matrix in which each element indicates the similarity sij between two data points xi and xj
  3.  
  4. The goal of clustering is to divide the data points into several groups such that points in the same group are similar and points in different groups are dissimilar.
  5.  
  6. Modeling the dataset as a graph
  7.  
  8. The clustering problem in graph perspective is then formulated as a partition of the graph such that nodes in the same sub-graph are densely connected/homogeneous and sparsely connected /heterogeneous to the rest of the graph.
  9.  
  10. Distances and similarities are reverse to each other. In the following, only talk about similarities, everything also works with distances.
  11. Dynamic Attributed Network
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement