トップ «前の日記(2016-11-30) 最新 次の日記(2016-12-02)» 編集

ヨタの日々

2001|08|09|10|11|12|
2002|01|02|03|04|05|06|07|08|09|10|11|12|
2003|01|02|03|04|05|06|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|01|02|03|04|05|06|07|08|09|10|11|12|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|08|09|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|12|
2024|01|02|03|

2016-12-01 :-(

_ やったこと

0530 起床

0830 労働

1700 退勤

2100 飯

_ [TensorFlow]Windows で TensorFlow

Windows 対応されたので入れた。Google Developers Blog: TensorFlow 0.12 adds support for Windows

anaconda をインストールする

https://www.continuum.io/downloads

TensorFlow をインストールする

スタート - メニュー - Anaconda - Anaconda Prompt を起動

インストール

pip install tensorflow

動作確認はいつもの Run TensorFlow from the Command Line

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

_ [udacity][TensorFlow]udacity TensorFlow の例題を Windows の jupyter で実行する

python は Anaconda でインストール済みとする。

TensorFlow ライブラリも pip でインストール済みとする。

https://github.com/tensorflow/tensorflow をダウンロードなり git clone なりする。

Anaconda Prompt を起動する。

udacity へ移動する。

cd tensorflow-master\tensorflow\examples\udacity

jupyter notebook を起動する。jupyter を起動したディレクトリがルートとなる(ようだ)。

jupyter notebook