mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
118 B
Python
12 lines
118 B
Python
import tensorflow as tf
|
|
|
|
text = tf.constant('Hello, world!')
|
|
|
|
|
|
@tf.function
|
|
def hello():
|
|
tf.print(text)
|
|
|
|
|
|
hello()
|