CenterNet

放弃betapose了,真是让人崩溃,搞了20多天,一堆BUG和各种问题,写好文档太重要了。这个CENTERNET就友好多了,一个下午搞定。

https://github.com/Duankaiwen/CenterNet

文档步骤大致是正确的,几个坑记录一下:

1.作者用的pytorch版本是0.4.1,但是用anaconda的话会装cuda8.0版本的pytorch。我这里是cuda9.0版本的(默认对应的是pytorch1.0),运行不起来,所以需要手动装一个合适的:

https://pypi.org/project/torch/#files 到历史记录里面下载torch-0.4.1-cp36-cp36m-manylinux1_x86_64.whl版本是可用的。

然后用本环境下的pip安装

anaconda/envs/环境名称/bin/pip install torch-0.4.1-cp36-cp36m-manylinux1_x86_64.whl

不正确版本报这个错误:

RuntimeError:CUDNN_STATUS_EXECUTION_FAILED

2.代码有个地方路径没配置正确:

2.1config/CenterNet-104.json

"data_dir": "../data"改成"data_dir": "./data"

不然报这个错误:

FileNotFoundError: [Errno 2] No such file or directory: '../data/coco/annotations/instances_testdev2017.json'

或者

AttributeError: 'NoneType' object has no attribute 'shape'

3.我写一个python脚本用于显示: https://github.com/liuzehao/centernetHelp/blob/master/showpicture.py

CenterNet_第1张图片

你可能感兴趣的:(AR深度学习项目)