I have initialized a constant in tensorflow:
hello = tf.constant('hello')
In normal mode, print(sess.run(hello).decode())
outputs the plain text in a constant Tensor.
In eager execution mode however, the code above does not work.
How can I print the plain text in constant Tensor hello?
This question is NOT about python b'str' or tf sess.run