debug的日常
椰子炖我
这个作者很懒,什么都没留下…
展开
-
解决connection to python debugger failed timeout waiting for response 501
debug原创 2022-11-22 16:25:40 · 1339 阅读 · 1 评论 -
解决AttributeError: module ‘torch.optim.lr_scheduler‘ has no attribute ‘LinearLR‘
运行pytorch官方文档构建网络时报错说没有LinearLR,这么报错肯定是版本问题,本来以为是pytorch1.9.1太高了降到了1.5.0发现依旧报错,去官方git上面搜了一下,参考https://github.com/pytorch/vision/issues/4467发现是版本太低了,LinearLR是1.10.0才有的函数,所以解决方案就是去torch官网conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pyt原创 2021-10-25 20:13:56 · 4167 阅读 · 0 评论 -
解决 ERROR: Command errored out with exit status 128: git clone -q
在安装 git+github 网页时出现此错误,全称是ERROR: Command errored out with exit status 128: git clone -q https://github.com/ildoonet/pytorch-gradual-warmup-lr.git /tmp/pip-req-build-88ue_mql Check the logs for full command output.参考解决方案https://github.com/spdx/spdx-onl原创 2021-10-08 19:24:02 · 44512 阅读 · 33 评论 -
解决 gnutls_handshake() failed: The TLS connection was non-properly terminated.
安装apex,输入git clone https://github.com/NVIDIA/apex,持续报错 gnutls_handshake() failed: The TLS connection was non-properly terminated.已有解决方案可以优先尝试,基本上就是取消/重置代理,见https://blog.csdn.net/shaopeng568/article/details/114919318https://blog.csdn.net/weixin_41010198/原创 2021-10-08 11:19:07 · 2193 阅读 · 1 评论 -
解决 RuntimeError: implement_array_function method already has a docstring
起初程序运行没有问题,在安装了低版本的opencv-python后,就一直报错:网上的意见有说是numpy/matplotlib/scipy版本不适配,经历了很长时间的各种升降numpy/matplotlib/scipy后,发现terminal里运行是正常的,就是pycharm的问题,在某一次安装降了版本的matplotlib后,在pycharm解释器里查看的时候发现并没有更新刚刚安装的matplotlib的版本。即pip list后显示matplotlib version为3.0.3,但pycharm解原创 2020-07-10 11:13:24 · 7017 阅读 · 0 评论 -
解决 TypeError: slice indices must be integers or None or have an __index__ method
定义part的值为使用循环依次使用part中的值 for i in part: x = spike[i:i+scale,:]此时出现错误将变量i改为强制int即可解决 for i in part: spike_scaled_x = spike[int(i):int(i+scale),:]原创 2020-07-08 13:19:15 · 7011 阅读 · 0 评论 -
解决python中NameError: name os is not defined
解决python中NameError: name ‘os’ is not defined运行时报错,网上给出的解决方案大多都是import os,但代码中已有import os依旧报错,最后找到一种可行的方法:把import os放到其他import之后,即from model import *from utils import *from config import *import os运行成功。解决方案链接...原创 2020-06-28 16:58:42 · 47385 阅读 · 8 评论