2019-09-03 21:24:50 +08:00

12 lines
110 B
Python

import tensorflow as tf
@tf.function
def add(a, b):
return a + b
result = add(4, 5)
tf.print(result)