書名: 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__))
推薦閱讀