@Reference(type=Article, author={"Krizhevsky, A.","Hinton, G."}, title="Learning multiple layers of features from tiny images", year="2009", journal="Master\'s thesis, Department of Computer Science, University of Toronto", publisher="Citeseer") @DatasetDescription(name="CIFAR-100", description="This dataset is just like CIFAR-10, except it has 100 classes containing 600 images each. There are 500 training images and 100 testing images per class. The 100 classes in the CIFAR-100 are grouped into 20 superclasses. Each image comes with a \"fine\" label (the class to which it belongs) and a \"coarse\" label (the superclass to which it belongs).", creator="Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton", url="http://www.cs.toronto.edu/~kriz/cifar.html", downloadUrls="http://datasets.openimaj.org/cifar/cifar-100-binary.tar.gz") public class CIFAR100Dataset extends CIFARDataset
FIMAGE_READER, HEIGHT, MBFIMAGE_READER, WIDTH
Modifier and Type | Method and Description |
---|---|
static <IMAGE> GroupedDataset<String,ListDataset<IMAGE>,IMAGE> |
getTestImages(BinaryReader<IMAGE> reader,
boolean fineLabels)
Load the test images using the given reader.
|
static <IMAGE> GroupedDataset<String,ListDataset<IMAGE>,IMAGE> |
getTrainingImages(BinaryReader<IMAGE> reader,
boolean fineLabels)
Load the training images using the given reader.
|
public static <IMAGE> GroupedDataset<String,ListDataset<IMAGE>,IMAGE> getTrainingImages(BinaryReader<IMAGE> reader, boolean fineLabels) throws IOException
MBFImage
s, you would do the following:
CIFAR100Dataset.getTrainingImages(CIFAR100Dataset.MBFIMAGE_READER);
reader
- the readerfineLabels
- if true, then the fine labels will be used; otherwise the
coarse superclass labels will be used.IOException
public static <IMAGE> GroupedDataset<String,ListDataset<IMAGE>,IMAGE> getTestImages(BinaryReader<IMAGE> reader, boolean fineLabels) throws IOException
MBFImage
s, you would do the following:
CIFAR100Dataset.getTestImages(CIFAR100Dataset.MBFIMAGE_READER);
reader
- the readerfineLabels
- if true, then the fine labels will be used; otherwise the
coarse superclass labels will be used.IOException