近期使用ubuntu自带python2运行别人的caffe模型出现问题总结:
在对结果保存时,出现了第一次和第二次图片的重叠,把所有结果保存到了同一幅图像中去了。
解决办法:加上plt.close()
参考:https://blog.csdn.net/daixiangzi/article/details/82528927
fast_rcnn/test.py", line 33, in _get_image_blob
im_orig = im.astype(np.float32, copy=True)
AttributeError: 'NoneType' object has no attribute 'astype'
我出现此错误是加载图片的路径有问题,没有读取到图片。
由于GPU数量不匹配造成的,caffe中设置GPU后不用再使用CUDA_VISIBLE_DEVICES
参考:https://blog.csdn.net/xunan003/article/details/78433383
主要是没有加载到bin文件
参考:https://blog.csdn.net/u011463794/article/details/83017138
主要是使用pip install 包 --user
参考:https://blog.csdn.net/qq_43192819/article/details/85225127
需要注意版本信息,如果notebook为5.6.0以下版本,c.NotebookApp.ip = '*',为以上版本,则设置为c.NotebookApp.ip = '0.0.0.0'
参考:https://blog.csdn.net/duanbiren123/article/details/83833148
:sudo fuser -v /dev/nvidia*