■ Session 클래스의 run 메소드를 사용해 1개 이상의 텐서 값을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import tensorflow as tf aConstantTensor = tf.constant([100.0]) bConstantTensor = tf.constant([300.0]) cConstantTensor = tf.constant([3.0]) addTensor = tf.add(aConstantTensor, bConstantTensor) multiplyTensor = tf.multiply(aConstantTensor, cConstantTensor) with tf.Session() as session: result = session.run([addTensor, multiplyTensor]) print(result) [결과] [array([400.], dtype=float32), array([300.], dtype=float32)] |