October 2018
Intermediate to advanced
472 pages
10h 57m
English
Before we jump into building our awesome neural network, let's first have a look at the famous MNIST dataset. So let's visualize the MNIST dataset in this section.
Let's start therefore by downloading the data, using the following commands:
from tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
If we examine the mnist ...
Read now
Unlock full access