■ constant 함수를 사용해 상수를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import numpy as np import tensorflow as tf ndArray = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) constantTensor = tf.constant(ndArray) with tf.Session() as session: print(constantTensor.get_shape()) print(session.run(constantTensor)) [결과] (10,) [ 1 2 3 4 5 6 7 8 9 10] |