Skip to content

Instantly share code, notes, and snippets.

@JoshVarty
Created March 18, 2018 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoshVarty/10a45b2cb2b73c673d34d269dc2cac54 to your computer and use it in GitHub Desktop.
Save JoshVarty/10a45b2cb2b73c673d34d269dc2cac54 to your computer and use it in GitHub Desktop.
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