171_TensorFlow_install_test_success!!

TensorFlowの動きテストがうまくいった例を記録しておきます。

まず、

C:\Users\h1729>docker start -i tf

でtf(すなわちTensorFlow)を起動、次に
root@920195b1f780:/notebooks# jupyter notebook

でjupyter notebookを起動、指定されたURLでWebを起動

(図1)

すると、、本のようにサンプルが出ました。

(図2)

Pythonのコマンドも2こチェックしてみます。(すでにやったけど。。)

#1

import tensorflow as tf
hello = tf.constant(‘Hello World on 2017/02/10’)
sess = tf.Session()
print(sess.run(hello))
 
#2
a = tf.constant(100)
b = tf.constant(10000)
print(sess.run(a+b))

 

(図3)

正常にPythonの結果が表示されたようです。!!!

 

さあ、やっと、公式ホームページへ。。

 

以上