スポンサーリンク
カテゴリ:placeholder
Python バージョン:Python2.7
Tensorflowバージョン:Tnsorflow 1.0
OSバージョン:Ubuntu 16.04.2
Tensorflow で place holderの中身を見る方法を紹介します。
例えば以下のようにプレスホルダーが定義されている場合を考えます。
ph_x = tf.placeholder(tf.float32, [None, 28 * 28 ])
ph_y = tf.placeholder(tf.float32, [None, 10])
<処理は中略>
>>> print ph_x
Tensor("Placeholder:0", shape=(?, 784), dtype=float32)
>>> print ph_y
Tensor("Placeholder_1:0", shape=(?, 10), dtype=float32)
>>>
sess.run(ts,feed_dict={ph_x:test1[1:100],ph_y:test2[1:100]} )
print sess.run(W)
print sess.run(b)
スポンサーリンク