Skip to content

Instantly share code, notes, and snippets.

@hadifar
Created December 8, 2018 12:07
Show Gist options
  • Save hadifar/11e13d977937579ccf2c2f3ad10292a7 to your computer and use it in GitHub Desktop.
Save hadifar/11e13d977937579ccf2c2f3ad10292a7 to your computer and use it in GitHub Desktop.
training_data = np.random.rand(3,20)
training_labels = np.random.rand(3,1)
with tf.Session():
input_data = tf.constant(training_data)
input_labels = tf.constant(training_labels)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment