Skip to content

Instantly share code, notes, and snippets.

@fabclmnt
Created May 7, 2020 14:32
Show Gist options
  • Save fabclmnt/a088bf6aceeace04da5d5b438d85bd2c to your computer and use it in GitHub Desktop.
Save fabclmnt/a088bf6aceeace04da5d5b438d85bd2c to your computer and use it in GitHub Desktop.
import tensorflow as tf
# Declaring constants
x = tf.constants(4)
y = tf.constants(7)
# Performing operations
z = x + y
# Printing the result
print(z)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment