December 2017
Intermediate to advanced
536 pages
14h 23m
English
Let us start with the recipe:
from __future__ import division, print_function
import tensorflow as tf
import matplotlib.pyplot as plt
import numpy as np
# Import MNIST data
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
Read now
Unlock full access