bug
CSDN专家-深度学习进阶
如果有帮助请给我的回答点一下【采纳】,谢谢!
如有问题,可关注我私信。
展开
-
【opencv调用yolov3报错IndexError: invalid index to scalar variable】
用opencv调用yolov3的权重文件,获取三个尺度输出层的名称时报错ln = [ln[i[0] - 1] for i in net.getUnconnectedOutLayers()]报错 IndexError: invalid index to scalar variable.这个代码是几年前的,可能是版本的问题现在会报错解决方法:[0]去掉改成ln = [ln[i - 1] for i in net.getUnconnectedOutLayers()]...原创 2022-04-30 00:15:00 · 3239 阅读 · 1 评论 -
mac 用cv等包报错Intel MKL fatal error This system does not meet the minimum requirements for use of the I
报错Intel MKL fatal error :This system does not meet the minimum requirements for use of the Intel(R) Math Kernel Library解决方法:mac有自己的视觉包,通过anaconda导入的是windows的不兼容,换成mac自己的视觉包就好了原创 2022-03-23 20:46:19 · 2265 阅读 · 3 评论 -
pip install weditor安装出错解决方法
报错信息:Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simpleCollecting weditorUsing cachedhttps://pypi.tuna.tsinghua.edu.cn/packages/04/9b/ec6c2b8ab08fecd21d98121e2b91244632d1836669bb9c917ff01406bd1a/weditor-0.6.5.tar.gz (2.2 MB)Preparing metadat原创 2022-03-01 18:10:50 · 13335 阅读 · 12 评论 -
Pycharm 报错cannot open local terminal failed to start xxx.py in xxxproject
Pycharm 报错cannot open local terminal failed to start xxx.py in xxxproject解决办法:1.点击File-settings-Tools-Terminal查看Start directory 后面的路径是不是不存在,修改成现在项目的路径2.如果Start directory路径正常查看下面的shell path是不是cmd.exe,不是的话改过来。...原创 2021-08-24 20:15:08 · 1451 阅读 · 0 评论 -
matplotlib 3D绘图警告;MatplotlibDeprecationWarning: Axes3D(fig) adding itself to the figure is deprecate
警告内容:MatplotlibDeprecationWarning: Axes3D(fig) adding itself to the figure is deprecated since 3.4. Pass the keyword argument auto_add_to_figure=False and use fig.add_axes(ax) to suppress this warning. The default value of auto_add_to_figure will change t原创 2021-08-24 09:18:28 · 10209 阅读 · 4 评论