确实是一个简单的问题,但似乎无法在 TensorFlow 文档中或通过谷歌搜索找到一个函数。
我怎样才能类型的张量转换tf.int32到类型之一tf.string?
我试着简单地用这样的东西来铸造它:
x = tf.constant([1,2,3], dtype=tf.int32)
x_as_string = tf.cast(x, dtype=tf.string) # hoping for this output: [ '1', '2', '3' ]
with tf.Session() as sess:
res = sess.run(x_as_string)
但点击错误消息:
不支持将 int32 转换为字符串
文档中的某个地方是否有我遗漏的简单功能?
更新:
澄清:我意识到我可以使用 python 函数“解决”这个问题,tf.py_func但询问 TensorFlow 本身是否有解决方案
相关分类