Created
March 18, 2018 22:06
-
-
Save JoshVarty/10a45b2cb2b73c673d34d269dc2cac54 to your computer and use it in GitHub Desktop.
This file contains hidden or 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