↧
Answer by mrry for What data types can you give as keys to feed in TensorFlow?
TensorFlow primarily expects tf.Tensor objects as the keys in the feed dictionary. It will also accept a string (which may be bytes or unicode) if it is equal to the .name property of some tf.Tensor in...
View ArticleWhat data types can you give as keys to feed in TensorFlow?
Consider computing an inner product in tensor flow for the sake of an example. I was trying to experiment on the different ways to refer to things in graphs in TensorFlow when one evaluates it with a...
View Article