|
Hi all, Is neural network is suitable for unsupervised learning like clustering. In case of its possibility, can someone refer me some related resources? |
|
Neural networks are often used for feature extraction and dimensionality reduction. Google autoencoders and RBMs. One of the original papers is this one. For clustering, I guess you would be looking at SOMs and Neural Gas. These are big in the neural network community but I have the feeling they are a bit frowned upon in the machine learning community. My bet would rather be to extract features or learn a metric using an autoencoder (my current favourit is this) and then use k-means.
This answer is marked "community wiki".
SOMs are generally considered more for visualisation than inference, but are very useful tools.
(Feb 11 at 18:17)
Robert Layton
|