変数はグラフの実行を通じて状態を保持します。次の例題は単純なカウンターとして作用する変数の例です。 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 の本家サイ…
TensorFlow : Tutorials : Non-ML : マンデルブロ集合
TensorFlow : Tutorials : Non-ML : マンデルブロ集合 (翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 更新日時 : 07/15/2018; 09/15/2017…
掲載記事
02/01/2016 付けのクラスキャット・プレスリリース : 深層学習ツールキット CNTK の GPU 対応 マネージドサービス 及び コンサルティング・サービスの提供を開始 の主な掲載記事です。 @IT (atma…
TensorFlow: snippet: Keras
$ python -c “from keras import backend; print backend._BACKEND” Using TensorFlow backend. tensorflow 【参考】 Kera…
TensorFlow: snippet: 対話的な利用方法
対話的な Python 環境での使い勝手のために、対話的に利用する際には、InteractiveSession クラス、そして Tensor.eval() と Operation.run() メソッドを代わりに使うことに…
TensorFlow: snippet: 基本的な使い方
import tensorflow as tf matrix1 = tf.constant([[3., 3.]]) matrix2 = tf.constant([[2.],[2.]]) product = tf.matm…
TensorFlow : (r1.0) Programmer’s Guide : 変数: 作成、初期化、保存そしてロード
TensorFlow : (r1.0) Programmer’s Guide : 変数: 作成、初期化、保存そしてロード (翻訳/解説) 翻訳 : (株)クラスキャット セールスインフォメーション 更新日時 …