0
텐서 흐름에서 변수를 초기화하려고하는데 예외가 아닙니다. 아래는 코드입니다. 누군가가이 일을 도울 수 있습니까?`FailedPreconditionError : 초기화되지 않은 값을 사용하려고 시도합니다. 변수 '텐서 흐름에서 변수를 초기화하는 중 오류가 발생했습니다.
import tensorflow as tf
node1 = tf.constant(3.0, dtype=tf.float32)
node2 = tf.constant(4.0) # also tf.float32 implicitly
print(node1, node2)
init_g = tf.global_variables_initializer()
init_l = tf.local_variables_initializer()
sess = tf.Session()
sess.run(init_g)
sess.run(init_l)
print(sess.run([node1, node2]))
node3 = tf.add(node1, node2)
print(node3) #prints type in tensorflow
print(sess.run([node3]))
node4 = tf.Variable([.3], dtype=tf.float32)
print(sess.run([node4]))