Files
docker-stacks/tensorflow-notebook/test/units/unit_tensorflow.py
2021-06-26 18:40:50 +03: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])))