global_variables_initializer()
-
(2).텐서플로우(Tensorflow)함수 상수 및 변수 Constant(), Variable(), global_variables_initializer()Python/Tensorflow 2019. 12. 21. 16:10
텐서플로우는 일반적인 Python 자료형 과 조금 다르다 텐서라는 자료형을 가지고 있으며 이에따라 변수 및 상수 지정 방법이 조금은 다르다 한번 알아보자 . import tensorflow as tf a = tf.constant(3) b = tf.constant(2) c = tf.add(a, b) sess = tf.Session() print(sess.run(c)) 이런식으로 사용 할 수 있으며 constant가 상수를 지정하는 방식이다 .텐서플로우 같은경우에는 어떠한 수식을 만들어 준 뒤에 하나의 흐름 하나의 세션이 필요함 sess= tf.Session() 세션을 만들어주고 sess.run(c) 라는 식으로세션을 실행함 import tensorflow as tf a = tf.Variable(5) # 변..