Dataset

This module contains all the dataset related classes.

class lenet.dataset.fashion_mnist(dir='data/fashion')[source][source]

Class for the fashion mnist objects. Ensure that data is downloaded from here

Parameters:dir – Directory to cache at
images[source]

This is the placeholder for images. This needs to be fed in using feed_dict.

labels[source]

This is the placeholder for images. This needs to be fed in using feed_dict.

feed[source]

This is a feeder from mnist tutorials of tensorflow. Use this for feeding in data.

class lenet.dataset.mnist(dir='data')[source][source]

Class for the mnist objects

Parameters:dir – Directory to cache at
images[source]

This is the placeholder for images. This needs to be fed in using feed_dict.

labels[source]

This is the placeholder for images. This needs to be fed in using feed_dict.

feed[source]

This is a feeder from mnist tutorials of tensorflow. Use this for feeding in data.