Created
February 17, 2020 12:11
-
-
Save frenzy2106/112d03b16f1dc82ac468572fedd57f70 to your computer and use it in GitHub Desktop.
Tensorflow 1.x example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
x = tf.constant([1,2,3,4,5]) | |
y = tf.constant([1,1,1,1,1]) | |
a = tf.add(x,y) | |
print(a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment