Last active
September 6, 2018 08:11
-
-
Save andreaschandra/0a7b2bcffb94997e57d3819ab8a29989 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
import tensorflow as tf | |
a_const = tf.constant([1,2,3]) | |
sess = tf.Session() | |
sess.run(a_const) | |
#array([1, 2, 3], dtype=int32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment