This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input = tf.placeholder(tf.float32, shape=(None, 32, 32, 3)) #Input is of size 32x32x3 (RGB images) | |
labels = tf.placeholder(tf.int32, shape=(None), name="labels") #Labels are single integers (tf.int32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment