분류 전체보기49 [ai-3team] 2020-11-05 study Lab1 import tensorflow as tf tf.__version__ #tensorflow의 버전을 확인한다. '1.12.0' hello = tf.constant("Hello, TensorFlow!") sess = tf.Session() print(sess.run(hello)) print(sess.run(hello).decode(encoding='utf-8')) b'Hello, TensorFlow!' Hello, TensorFlow! 그냥 print를 하게 되면 b가 앞에 붙어서 출력이 되는데 sess.run(hello)의 자료형이 byte 이기 때문이다. 그래서 decode 함수로 문자열로 변환시켜 출력을 하면 정상적으로 나오게 된다. 여기서 우리는 한가지 의문점이 있었다. 왜 hello를 바.. 2020. 11. 6. 이전 1 ··· 10 11 12 13 다음