tensorflow的安装测试和版本、路径查询
背景:已经安装好tensorflow,接下来主要是进行测试。
测试tensorflow
导入包
import tensorflow as tf
sess = tf.compat.v1.Session()
2.在jupyter中查看tf的安装版本和路径
tf.__path__
tf.__version__
3查看python的版本
import sys
print(sys.version)
print(sys.executable)
4,tf安装测试
sess = tf.compat.v1.Session()
a = tf.constant(10)
b = tf.constant(12)
print(sess.run(a+b))
结果出错: 解决方案:
sess = tf.compat.v1.Session()
#禁用TF2.x中的eager,不可以颠倒,在a,b的前面
tf.com
共有 0 条评论