Spectral Clustering a graph in python
Without much experience with Spectral-clustering and just going by the docs (skip to the end for the results!): Code: import numpy as np import networkx as nx from sklearn.cluster import SpectralClustering from sklearn import metrics np.random.seed(1) # Get your mentioned graph G = nx.karate_club_graph() # Get ground-truth: club-labels -> transform to 0/1 np-array # (possible … Read more