Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 629 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 629 Bytes

MNIST in TensorFlow

This directory builds a convolutional neural net to classify the MNIST dataset using the tf.data, tf.estimator.Estimator, and tf.layers APIs.

Setup

To begin, you'll simply need the latest version of TensorFlow installed. Then to train the model, run the following:

python mnist.py

The model will begin training and will automatically evaluate itself on the validation data.