Created
April 18, 2019 08:46
-
-
Save NMZivkovic/069d431ac8b1397775d535b0b04e49ff 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 | |
const1 = tf.constant([[1,2,3], [1,2,3]]); | |
const2 = tf.constant([[3,4,5], [3,4,5]]); | |
result = tf.add(const1, const2); | |
print(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment