如何在TensorFlow中解码base64数据?

时间:2016-07-15 04:13:00

标签: tensorflow

是否可以在TensorFlow中解码base64数据?

我查看了文档,但没有看到任何操作。

1 个答案:

答案 0 :(得分:1)

如下:

import base64

def base64_decode_op(x):
  return tf.py_func(lambda x: base64.decodestring(x), [x], [tf.string])[0]

sess = tf.InteractiveSession()
a = base64.encodestring("abcd")
base64_decode_op(a).eval()
# prints 'abcd'