我试图将具有str格式的python变量转换为具有tf.string数据类型的Tensorflow&Tensor。 任何人都知道怎么做?
这是我尝试过的内容,但预计data
已经采用Tensor格式。
print(type(data)) # <type 'str'>
myTensor = tf.convert_to_tensor(data, dtype=tf.string) # ERROR!
答案 0 :(得分:0)
我尝试按如下方式重现错误:
myTensor = tf.convert_to_tensor("foo", dtype=tf.string)
print(myTensor)
然而,打印输出是Tensor(&#34; Const:0&#34;,shape =(),dtype = string)所以它似乎在我的情况下正常工作。
我不确定你为什么会收到错误。