Guest User

Untitled

a guest
Jul 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. (tensorflow) MacBook-Pro-van-Niels:Tensorflow NielsRogge$ python
  2. Python 2.7.10 (default, Jul 15 2017, 17:16:57)
  3. [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import tensorflow as tf
  6. >>> hello = tf.constant('Hello, TensorFlow!')
  7. >>> sess = tf.Session()
  8. 2018-07-20 12:00:37.904867: I
  9. tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports
  10. instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
  11. >>> print(sess.run(hello))
  12. Hello, TensorFlow!
  13.  
  14. pip install --ignore-installed --upgrade "Download URL"
Add Comment
Please, Sign In to add comment