tensorflow, torch, cuda, ubuntu版本匹配

系统:Ubuntu 18.0

CUDA: 10.0.130

支持tensorflow 1.14.0以上,否则import时报错

ImportError: libcudnn.so.7: cannot open shared object file: No such file or directory

Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/errors

for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.

 

chineSEOcr:tensorflow最高支持1.13.1,否则报错:

tensorflow.python.framework.errors_impl.InvalidArgumentError: You must Feed a value for placeholder tensor 'Placeholder_368' with dtype float and shape [2]
[[{{node Placeholder_368}}]]

 

解决方法:

修改keras_yolo3.py line 365-366

Boxes  = concatenate(Boxes, axis=0)
scores = concatenate(scores, axis=0)

改为

Boxes  = K.concatenate(Boxes, axis=0)
scores = K.concatenate(scores, axis=0)

修改后的安装版本:

keras==2.2.4 
tensorflow==1.14.0 
tensorflow-gpu==1.14.0

 

相关文章

MNIST数据集可以说是深度学习的入门,但是使用模型预测单张M...
1、新建tensorflow环境(1)打开anacondaprompt,输入命令行...
这篇文章主要介绍“张量tensor是什么”,在日常操作中,相信...
tensorflow中model.fit()用法model.fit()方法用于执行训练过...
https://blog.csdn.net/To_be_little/article/details/12443...
根据身高推测体重const$=require('jquery');const...