Skip to content

Instantly share code, notes, and snippets.

@sol0invictus
Created March 11, 2020 21:03
Show Gist options
  • Save sol0invictus/a29a5cddc8fd840a54617502369257a5 to your computer and use it in GitHub Desktop.
Save sol0invictus/a29a5cddc8fd840a54617502369257a5 to your computer and use it in GitHub Desktop.
a = tf.constant(2)
b = tf.constant(10)
c = tf.multiply(a,b)
sess = tf.Session()
print(sess.run(c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment