October 2018
Beginner
362 pages
9h 32m
English
Since we have a basic binary classification task of, recognizing digits, we're going to utilize cross entropy as our loss function. We can easily implement it with a built-in function in TensorFlow:
loss = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(network_output, y))
Read now
Unlock full access