python str to tensorflow tf.string tensor

时间:2017-12-21 19:57:55

标签: tensorflow machine-learning computer-vision

我试图将具有str格式的python变量转换为具有tf.string数据类型的Tensorflow&Tensor。 任何人都知道怎么做?

这是我尝试过的内容,但预计data已经采用Tensor格式。

print(type(data)) # <type 'str'>
myTensor = tf.convert_to_tensor(data, dtype=tf.string) # ERROR!

1 个答案:

答案 0 :(得分:0)

我尝试按如下方式重现错误:

myTensor = tf.convert_to_tensor("foo", dtype=tf.string) 

print(myTensor)

然而,打印输出是Tensor(&#34; Const:0&#34;,shape =(),dtype = string)所以它似乎在我的情况下正常工作。

我不确定你为什么会收到错误。