Skip to content

Instantly share code, notes, and snippets.

@ispamm
Last active March 16, 2018 14:03
Show Gist options
  • Save ispamm/36bc71d1cdaccb6beba1dea07f14c4c1 to your computer and use it in GitHub Desktop.
Save ispamm/36bc71d1cdaccb6beba1dea07f14c4c1 to your computer and use it in GitHub Desktop.
a = tf.constant(3.0)
b = a + 2.0
c = 1.5 * b
print(b) # tf.Tensor(5.0, shape=(), dtype=float32)
print(c) # tf.Tensor(7.5, shape=(), dtype=float32)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment