April 2017
Intermediate to advanced
320 pages
7h 46m
English
The following is the full source code for the digit classifier previously described:
from six.moves import xrange import tensorflow as tf import prettytensor as pt from prettytensor.tutorial import data_utils tf.app.flags.DEFINE_string('save_path', None, 'Where to save the model checkpoints.') FLAGS = tf.app.flags.FLAGS BATCH_SIZE = 50 EPOCH_SIZE = 60000 // BATCH_SIZE TEST_SIZE = 10000 // BATCH_SIZE image_placeholder = tf.placeholder\ (tf.float32, [BATCH_SIZE, 28, 28, 1])labels_placeholder = tf.placeholder\ (tf.float32, [BATCH_SIZE, 10])tf.app.flags.DEFINE_string('model', 'full','Choose one of the models, either full or conv') FLAGS = tf.app.flags.FLAGS def multilayer_fully_connected(images, labels): images ...Read now
Unlock full access