环境安装:anconda 下安装 tensorflow1.5(学习得用2但是跑一些模型还得用1)
创建环境conda create 环境名称 python=3.6
激活环境activate 环境名称
下一个安装包放到lib的site-packbag里(可能拼错了)
然后pip install+安装包位置
原理:
代码及代码安装调试:tensorflow下YOLO v1的代码_philip_pond的博客-优快云博客
voc_2007数据集下载:
链接:https://pan.baidu.com/s/1FfrAzpXr4h7YN3VgthofwA
提取码:f7cl
运行时报错:
FutureWarning: Passing (type, 1) or ‘1type’ as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / ‘(1,)type’._np_qint8 = np.dtype([(“qint8”, np.int8, 1)])
解决办法:把1改成(1,)即可,或者降低numpy版本