alexanderholt
11/7/2017 - 7:32 PM

TensorFlow with initiation

# Now condense this a little bit

a = tf.add(4, 6)
b = tf.multiply(2, 10)
c = tf.subtract(b, 5)

with tf.Session() as sess:
    added = sess.run([a, b, c])
    print(added)