Skip to content

Simple Installation of Spectral Multi-Manifold Clustering

Notifications You must be signed in to change notification settings

johnsmith0031/SMMC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SMMC

Simple Installation of Spectral Multi-Manifold Clustering Algorithm

SMMC(Multi-Manifold Clustering Algorithm) is an Algorithm used to handle spectral clustering problems, expecially the problems in which significant intersections among different clusters exist.

This Package is a Simple Installation of SMMC method described in

Y Wang, Y Jiang, Y Wu, ZH Zhou, "Spectral clustering on multiple manifolds", IEEE Transactions on Neural Networks, 2011, 22(7):1149-1161

#How to use this package:

Here is the example to cluster two circles, in which X is the dataset:


from SMMC.SMMC import SMMC

test = SMMC(X)
test.train_mppca(d = 2, M = 40, max_iter = 200, tol = 1e-4, kmeans_init = False)
locs = test.run_cluster(8,20,2)


And You can plot your result:


Image

More Examples are in directory examples, like this:
Image Image
Image

It's cool.

About

Simple Installation of Spectral Multi-Manifold Clustering

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages