Last active
September 6, 2018 08:16
-
-
Save andreaschandra/6715e2d8a7994e64cc7c8095b851f0a1 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
d = tf.Variable([3,4,5]) | |
init_op = tf.global_variables_initializer() | |
sess = tf.Session() | |
sess.run(init_op) | |
sess.run(d) | |
#array([4, 5, 6], dtype=int32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment