1
次のコードを試しました。しかし、テンソルフローでは供給できないものは見つけられません。フィード可能でないものを誰かに見せてもらえますか?これらは明示的にtf.Graph.prevent_feeding
メソッドを介して送りを防止している場合を除きテンソルフローでは供給できないものは何ですか?
#!/usr/bin/env python
# vim: set noexpandtab tabstop=2 shiftwidth=2 softtabstop=-1 fileencoding=utf-8:
import tensorflow as tf
x = tf.Variable(3)
y = tf.constant(3)
z = tf.add(1, 2)
with tf.Session() as sess:
print sess.graph.is_feedable(x)
print sess.graph.is_feedable(y)
print sess.graph.is_feedable(z)