Skip to content

Instantly share code, notes, and snippets.

@irdanish11
Created July 8, 2020 12:04
Show Gist options
  • Select an option

  • Save irdanish11/616ff145deb02945d24e2baff91354c4 to your computer and use it in GitHub Desktop.

Select an option

Save irdanish11/616ff145deb02945d24e2baff91354c4 to your computer and use it in GitHub Desktop.
a = tf.Variable(0)
@tf.function
def g(x):
x.assign_add(1)
return x
print(g(a))
print(g(a))
print(g(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment