Definition

Weighted Adjacency Matrix in Spectral Clustering

In spectral clustering, the weighted adjacency matrix WW represents the similarity graph of the data points. Each entry wi,jw_{i,j} denotes the non-negative similarity between points ii and jj, calculated by a specific function. For example, using the Gaussian similarity function:

wi,j=exp(xixj22σ2)w_{i,j} = \exp(- \frac{||x_i - x_j||^2}{2\sigma^2})

Here, ||\cdot|| denotes the L2 norm, and σ\sigma is a scaling parameter. The matrix WW is symmetric, and all weights satisfy wi,j0w_{i,j} \geq 0.

0

1

Updated 2026-06-17

Tags

Data Science