Replies: 1 comment 3 replies
-
@slerman12 not at this time, the best resource right now with a few demos is the colab notebook I recently shared https://twitter.com/wightmanr/status/1459314881534971904 (https://colab.research.google.com/drive/1czzQ8sUe-6rCxlK4vRCUk230pJuCSSS4?usp=sharing) cifar100 usage is shown there You can see the supported torchvision datasets in the factory https://github.com/rwightman/pytorch-image-models/blob/master/timm/data/dataset_factory.py ... each torchvision dataset has a slightly different API for creation so I can't just blanket cover them all. TFDS wrapper doesn't have any per-dataset limitation, you can try all of them, but they must be image classification datasets (or have a 'image' and 'label' field in the example encoding to work without modifications, so most of these should work https://www.tensorflow.org/datasets/catalog/overview#image_classification For the train script you need to specify the dataset source and name on the command line with ie I'm not too familiar with the tiny imagenet form, I don't think it's in torchvision or TFDS but I'm pretty sure it's just a folder dataset (folder per class) so you should be able to just set the dataset root dir to the location as long as train and val/eval/validation/valid folders exist. Make sure you set |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Are there any tutorials for datasets besides Imagenet? Like TinyImagenet or Cifar-100 for example?
Beta Was this translation helpful? Give feedback.
All reactions