TensorFlow : Get Started : 専門家のための深層 MNIST(翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 更新日時: 04/26, 03/20/2017 更新日時: …
月: 2016年2月
TensorFlow : Tutorials : MNIST データ・ダウンロード
TensorFlow : Tutorials : MNIST データダウンロード (翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 日時 : 02/15/2016 * 本ページは、TensorF…
TensorFlow: snippet: GPU
a = tf.constant([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], shape=[2, 3], name=’a’) b = tf.constant([1.0, 2.0, 3.0, 4.0, 5…
TensorFlow : Tutorials : GPU を利用する
TensorFlow : Tutorials : GPU を利用する (翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 更新日時 : 09/15/2017 作成日時 : 02/12/2016 *…
TensorFlow: snippet: TensorBoard
x = tf.placeholder(tf.float32, [None, 784], name=”x-input”) W = tf.Variable(tf.zeros([784,10]), name=”weights”…
TensorFlow : snippet : 変数の作成・初期化・保存・復旧
変数の作成にはテンソルの shape を指定します。 weights = tf.Variable(tf.random_normal([784, 200], stddev=0.35), name=”weights”) bi…
TensorFlow: snippet: テンソル
変数はグラフの実行を通じて状態を保持します。次の例題は単純なカウンターとして作用する変数の例です。 import tensorflow as tf state = tf.Variable(0, name=”counter…
TensorFlow: snippet: Hello World
In [1]: import tensorflow as tf In [2]: hello = tf.constant(‘Hello, TensorFlow!’) In [3]: sess = tf.Session() …
TensorFlow : Programmer’s Guide : データを読む
TensorFlow : Programmer’s Guide : データを読む (翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 更新日時 : 04/26/2017; 07/26/…
Keras: Theano と TensorFlow のための深層学習ライブラリ
(翻訳)Keras: Theano と TensorFlow のための深層学習ライブラリ 翻訳 : (株)クラスキャット セールスインフォメーション 日時 : 02/11/2016 * 本ページは、Keras の本家サイ…