Created
August 4, 2017 13:10
-
-
Save KuanYuChang/e6b0c746f6a855a4bbe71ba233478b96 to your computer and use it in GitHub Desktop.
testing tensorflow
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 | |
| hello = tf.constant('Hello, TensorFlow!') | |
| sess = tf.Session() | |
| print(sess.run(hello)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment