- TensorFlow 2.0 Quick Start Guide
- Tony Holdroyd
- 26字
- 2021-06-24 16:02:02
Importing TensorFlow
Importing TensorFlow is straightforward. Note a couple of system checks:
import tensorflow as tf
print("TensorFlow version: {}".format(tf.__version__))
print("Eager execution is: {}".format(tf.executing_eagerly()))
print("Keras version: {}".format(tf.keras.__version__))