如何在TF 2.0中将tf.string转换为python字符串

时间:2019-07-30 01:13:36

标签: python tensorflow

正如问题所述,如何将tf.string张量转换为python str。 在TF 1.0中,我可以轻松完成

sess.run(string_tensor)

但是我如何在TF 2.0中做到这一点?

1 个答案:

答案 0 :(得分:0)

我知道了。如果其他人有相同的问题,这是答案:

string_tensor.numpy().decode("utf-8")