Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created April 18, 2019 08:46
Show Gist options
  • Save NMZivkovic/069d431ac8b1397775d535b0b04e49ff to your computer and use it in GitHub Desktop.
Save NMZivkovic/069d431ac8b1397775d535b0b04e49ff to your computer and use it in GitHub Desktop.
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