tensorflow-CPU安装测试代码
时间: 2023-04-06 10:03:28 浏览: 121
我可以回答这个问题。以下是tensorflow-CPU安装测试代码:
```
import tensorflow as tf
# 创建一个常量张量
hello = tf.constant('Hello, TensorFlow!')
# 启动一个TensorFlow会话
sess = tf.Session()
# 运行会话并打印输出
print(sess.run(hello))
```
如果您遇到任何问题,请参考TensorFlow官方文档或社区支持。
阅读全文