Skip to content

Instantly share code, notes, and snippets.

@JoshVarty
Created March 18, 2018 22:06
Embed
What would you like to do?
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