Readers

Readers from binary MNIST, CIFAR-10, CIFAR-100.

class dlutils.reader.Mnist(path, items=None, train=True, test=False, resize_to_32x32=False)[source]

Read MNIST out of binary batches

get_images()[source]
get_labels()[source]
class dlutils.reader.Cifar10(path, train=True, test=False)[source]

Read CIFAR out of binary batches

get_images()[source]
get_labels()[source]
class dlutils.reader.Cifar100(path, train=True, test=False)[source]

Read CIFAR out of binary batches

get_images()[source]
get_labels()[source]