参考博客:超详细!手把手教你使用YOLOX进行物体检测(附数据集)_3D视觉工坊-CSDN博客
1.执行pip install -r requirements.txt报错:解决方法:pip install -r requirements.txt -i http://pypi.douban.com --trusted-host pypi.douban.com
2.执行python setup.py install报错原因是缺少Microsoft Visual C++,查阅了其他博客重新安装了插件解决了该问题
3.添加labelme2voc.py文件,执行后报错:代码缩进不正确导致with open()语句报错,参考博客:
Labelme标注的json文件转成xml文件(voc2007所需格式)_E_vens-CSDN博客
4.执行labelme2voc.py报错:ValueError: With n_samples=1, test_size=0.2 and train_size=None, the resulting train set will be empty.
查找博客同上,原因是sklearn版本太高,执行:
pip uninstall scikit-learn
pip install scikit-learn==0.19.1
5.使用命令行方式进行训练时报错:欢迎分享,转载请注明来源:内存溢出
评论列表(0条)