Files
docker-stacks/tensorflow-notebook/test/units/unit_tensorflow.py
2021-06-28 22:07:23 +02:00

8 lines
220 B
Python

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import tensorflow as tf
print(tf.constant("Hello, TensorFlow"))
print(tf.reduce_sum(tf.random.normal([1000, 1000])))