Does Imagenet contain unlabeled examples like STL-10 dataset? because I see that the dataset is used for unsupervised learning but it seems to me it has only labeled examples.
Asked
Active
Viewed 113 times
-1
-
2Iām voting to close this question because it is not about programming as defined in the [help] ā desertnaut Nov 26 '21 at 08:47
-
Beyond the fact that this is not a programming question, as the answer below correctly points out, you don't *need* unlabeled data in order to try unsupervised algorithms - you just do not use the labels provided. ā desertnaut Nov 26 '21 at 08:49
1 Answers
1
You can parse the ImageNet data using ImageFolder in Pytorch. For unsupervised learning, simply don't account for the labels coming from the Dataloader

Syed Shahrukh Imam
- 31
- 3