是否可以在TensorFlow中解码base64数据?
我查看了文档,但没有看到任何操作。
答案 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'