October 2017
Intermediate to advanced
330 pages
7h 7m
English
import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets('Data/mnist', one_hot=True)
n_classes = 10input_size = 784x = tf.placeholder(tf.float32, shape=[None, input_size])y = tf.placeholder(tf.float32, shape=[None, n_classes])keep_prob = tf.placeholder(tf.float32)
def weight_variable(shape): initial = tf.truncated_normal(shape, stddev=0.1) return tf.Variable(initial)def bias_variable(shape): initial = tf.constant(0.1, shape=shape) return tf.Variable(initial)def conv2d(x, ...
Read now
Unlock full access