Dockerを利用してTensorFlow環境構築
docker run -it -p 8888:8888 --name tensorflow gcr.io/tensorflow/tensorflow
※tensorflowのdockerイメージ構成はここを参考
コンテナに接続
docker exec -it tensorflow /bin/bash
必要なパッケージインストール
apt-get update
apt-get install -y vim wget
Tutorialを参考してhello World出力
#python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
>>> quit