標籤:

TensorFlow學習筆記之二——安裝和運行

TensorFlow學習筆記之二——安裝和運行

來自專欄 TensorFlow世界

通過閱讀TensorFlow的論文和相關博文之後,接下來,對TensorFlow進行一個簡單的初步運行。

1、安裝了Ubuntu 16.04.(ubuntu-16.04-desktop-amd64.iso)

2、sudo apt-get update

3、# Ubuntu/Linux 64-bit

$ sudo apt-get install Python-pip python-dev

4、# Ubuntu/Linux 64-bit, CPU only:

$ sudo pip install --upgrade storage.googleapis.com/

5、測試安裝結果:

[python]view plaincopy

  1. $ python
  2. ...
  3. >>> import tensorflow as tf
  4. >>> hello = tf.constant(Hello, TensorFlow!)
  5. >>> sess = tf.Session()
  6. >>> print(sess.run(hello))
  7. Hello, TensorFlow!
  8. >>> a = tf.constant(10)
  9. >>> b = tf.constant(32)
  10. >>> print(sess.run(a + b))
  11. 42
  12. >>>

6、測試結果運行正常,結合之前的論文,可以在這裡明顯的看到Session的用法,包括它的run()介面。

2016年5月9日

推薦閱讀:

為什麼在windows下用不了tensorflow?
一個模型庫學習所有:谷歌開源模塊化深度學習系統Tensor2Tensor
TensorFlow從1到2 | 第三章:深度學習革命的開端:卷積神經網路
TensorFlow煉丹(1) Using GPUs
[Tensorflow]-[error]讀取pb文件時的error

TAG:TensorFlow |