• 在命令行中输入以下命令测试tensorflow安装是否成功
 import tensorflow as tf
 tf.compat.v1.disable_eager_execution()
 x=tf.constant(1)

#如果这里报错 Could not load dynamic library ‘nvcuda.dll’; dlerror:nvcuda.dll not found或者Could not load dynamic library’cudart64_110.dll’; dlerror: cudart64_110.dll not found
去下载cudart64_110.dll 文件,官方下载地址:https://www.dll-files.com/cudart64_110.dll.html,解压会出现如下文件:cudart64_110.dll; 把cudart64_110.dll复制粘贴到C:\Windows\System32里就可以了之后,再重新输入x=tf.constant(1)

 x=tf.constant(1)
 y=tf.constant(2)
 z=x+y

#如果这里报错To enable them in other operations, rebuild TensorFlow with
the appropriate compiler flags.就加下面两行

 **import os
 os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'**
sess=tf.compat.v1.Session()
print(sess.run(z))

结果:3

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐