mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 10:34:06 +00:00
7 lines
219 B
Python
7 lines
219 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])))
|