Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

MNIST

MNIST is a simple computer vision dataset that consists of images of handwritten digits.

Some examples:

MNIST digits sample

It also includes labels for each image, which we use to train our example models.

The mnist library

This package includes the following functionality:

  • Download the dataset from storage.googleapis.com/cvdf-datasets/mnist,
  • Create a Dataset object to iterate over it, use for training and evaluation.
  • A linear and a CNN model demo.
  • A command-line demo (in the demo sub-directory).

Reference