C3:Uderstand TensorFlow Basics

Create Graph How to do it? a = tf.constant(5) b = tf.constant(2) c = tf.constant(3) d = tf.multiply(a, b) e = tf.add(c, b) f = tf.subtract(d, e) with tf.Session() as sess: ans = sess.run(f) print(
相關文章
相關標籤/搜索