TensorFlow 그래프에 if 조건을 추가하는 방법은 무엇입니까? 다음 코드가 있다고 가정 해 보겠습니다. x = tf.placeholder("float32", shape=[None, ins_size**2*3], name = "x_input") condition = tf.placeholder("int32", shape=[1, 1], name = "condition") W = tf.Variable(tf.zeros([ins_size**2*3,label_option]), name = "weights") b = tf.Variable(tf.zeros([label_option]), name = "bias") if condition > 0: y = tf.nn.softmax(tf.matmul(x, W) + b) e..