Two-dimensional image classification using unsupervised learning

21 views (last 30 days)
For example, I have one thousand two-dimensional images.
I'd like to classify those images into several groups using unsupervised learning.
But, I couldn't find helpful example or document for this problem.
Is there anyone who can help me with this problem?

Accepted Answer

Raunak Gupta
Raunak Gupta on 3 Oct 2019
Hi,
As per my understanding it is required to cluster the images into several groups using unsupervised learning. I would suggest using trainAutoencoder to learn a network which can generate meaningful features of the images, these features can be extracted from the last layer of encoder. The last layer of encoder is a lower dimensional representation of the image which can be used in kmeans for clustering the features in K groups. This way the images will be classified into several groups but be sure that the clustering is based on some high-level similarities between the images.
For more detailed information you may refer to the research papers available for Unsupervised Clustering.
  4 Comments
Raunak Gupta
Raunak Gupta on 5 May 2020
Hi kenta,
If you are talking about pre-trained network then I think transfer learning would be better term but for that too the classes in pre-trained network should contains the classes in current problem otherwise it means training a network from scratch.
For dimensionality reduction I totally agree if your network is very general so that it can extract feature from literally any image, then clustering would also work. But It still depends If the network has seen the problem images before otherwise it won't add much to a randomly intialized network.
Hope this clarifies.
Kenta
Kenta on 6 May 2020
Raunak Gupta, thanks for your explanation. Yes, the term fune tuning would be better. I understood.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!