TensorFlow(二)

TensorFlow 控制流 tf.cond a=tf.constant(2) b=tf.constant(3) x=tf.constant(4) y=tf.constant(5) z = tf.multiply(a, b) result = tf.cond(x < y, lambda: tf.add(x, z), lambda: tf.square(y)) with tf.Session() a
相關文章
相關標籤/搜索