■ InteractiveSession 클래스를 사용하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import numpy as np import tensorflow as tf interactiveSession = tf.InteractiveSession() ndArray = np.array([1, 2, 3, 4, 5]) constantTensor = tf.constant(ndArray) print(constantTensor.eval()) interactiveSession.close() [결과] [1 2 3 4 5] |