■ constant 함수를 사용해 상수를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import tensorflow as tf hello = tf.constant("Hello TensorFlow!") with tf.Session() as sess: result = sess.run(hello) print(result) [결과] b'Hello TensorFlow!' |