In [1]:
import tensorflow as tf
In [1]:
a = tf.constant([1.0, 2.0])
b = tf.constant([3.0, 4.0])
c = a * b
with tf.Session() as sess:
print sess.run(c)
In [ ]: