■ constant 함수를 사용해 상수를 만드는 방법을 보여준다. ▶ 예제 코드 (PY)
|
import tensorflow as tf hello = tf.constant("Hello TensorFlow!") with tf.Session() as sess: result = sess.run(hello) print(result) [결과] b'Hello TensorFlow!' |
■ Variable 클래스를 사용해 변수를 만드는 방법을 보여준다. ▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
import tensorflow as tf x = tf.constant(1, name = "x") y = tf.Variable(x + 9, name = "y") model = tf.global_variables_initializer() with tf.Session() as sess: sess.run(model) result = sess.run(y) print(result) [결과] 10 |
■ PYTHON TENSORFLOW를 설치하는 방법을 보여준다. 1. 설치 환경 • 운영 체제 : Microsoft Windows 10 64Bit Version • CUDA 지원 그래픽
더 읽기