Last active
February 3, 2018 09:25
-
-
Save NMZivkovic/5e5633814064a3665fd6a0187f7d39da to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
var1 = tf.Variable([[1, 2], [1, 2]], name="variable1") | |
var2 = tf.Variable([[3, 4], [3, 4]], name="variable2") | |
result = tf.matmul(var1, var2) | |
with tf.Session() as sess: | |
output = sess.run(result) | |
print(output) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment