测试TensorFlow 2.5是否安装成功
时间: 2023-09-10 18:06:57 浏览: 90
验证TensorFlow环境安装是否成功的小程序
5星 · 资源好评率100%
好的,您可以尝试以下代码来测试TensorFlow 2.5是否安装成功:
```
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant('Hello, TensorFlow!')
sess = tf.compat.v1.Session()
print(sess.run(hello))
```
如果您在运行上述代码时没有收到任何错误消息并且成功输出了“Hello, TensorFlow!”,则说明您已成功安装TensorFlow 2.5。
阅读全文