Created
December 8, 2018 12:07
-
-
Save hadifar/11e13d977937579ccf2c2f3ad10292a7 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
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