Fork me on CSDN

08 2021 档案

摘要:One of the best things about STN is the ability to simply plug it into any existing CNN with very little modification. # License: BSD # Author: Ghasse 阅读全文
posted @ 2021-08-24 16:07 追风赶月的少年 阅读(171) 评论(0) 推荐(0)
摘要:错误提示: 为pytorch不同版本进行更新迭代时引起的警告,某些参数被取代了 修正: criterion = torch.nn.BCELoss(size_average=True) 改为: criterion = torch.nn.BCELoss(reduction='mean') criteri 阅读全文
posted @ 2021-08-24 15:54 追风赶月的少年 阅读(7705) 评论(0) 推荐(0)
摘要:错误提示: 错误原因:torch.utils.data.DataLoader中的num_workers错误将num_workers改为0即可,0是默认值。num_workers是用来指定开多进程的数量,默认值为0,表示不启用多进程。若:将num_workers设置为0,程序报错,并提示设置环境变量K 阅读全文
posted @ 2021-08-24 15:49 追风赶月的少年 阅读(1948) 评论(0) 推荐(0)
摘要:YOLOX: Exceeding YOLO Series in 2021 图1:YOLOX和其他最先进的物体检测器在移动设备上精确模型的速度-精度权衡(上)和精简模型的尺寸-精度曲线(下)。 摘要 在本报告中,我们介绍了对YOLO系列进行了有经验的改进,形成了一种新的高性能检测器——YOLOX。我们 阅读全文
posted @ 2021-08-17 10:29 追风赶月的少年 阅读(4229) 评论(0) 推荐(0)
摘要:yolox训练时出现错误 错误提示: 解决办法: 原训练代码: python tools/train.py -f exps/example/yolox_voc/yolox_voc_s.py -d 1 -b 16 --fp16 -o -c weights/yolox_s.pth 修正: python 阅读全文
posted @ 2021-08-10 11:52 追风赶月的少年 阅读(477) 评论(0) 推荐(0)
摘要:错误提示: 解决办法: 1.找到该目录 2.删除带~的文件夹(这种情况是由插件安装失败/中途退出引起的,这会导致插件安装异常) 阅读全文
posted @ 2021-08-10 10:45 追风赶月的少年 阅读(2645) 评论(0) 推荐(1)
摘要:错误提示: 解决办法: 进入你的虚拟环境,输入以下内容 python -m ensurepip python -m pip install --upgrade pip 阅读全文
posted @ 2021-08-10 10:35 追风赶月的少年 阅读(83) 评论(0) 推荐(0)
摘要:问题重现: 解决办法: 1.点击PDF Password Remover - Download Now,下载软件 2.双击PPR.exe运行,点击buy a license now,输入序列码:FLA850510518611047 3.重启软件,将文件解锁即可。 阅读全文
posted @ 2021-08-07 12:11 追风赶月的少年 阅读(1935) 评论(2) 推荐(0)
摘要:在github上下载mirrors / nvidia / apex · CODE CHINA (csdn.net),然后本地安装 阅读全文
posted @ 2021-08-03 10:43 追风赶月的少年 阅读(851) 评论(0) 推荐(0)
摘要:错误提示: 修改: 可以在from yolox.data.data_augment import preproc上面添加如下两行代码(注意路径替换成你自己的): import sys sys.path.append(r'D:\PYCHARMprojects\YOLOX-main') 阅读全文
posted @ 2021-08-03 10:41 追风赶月的少年 阅读(2858) 评论(0) 推荐(0)
摘要:可以从github上下载到本地安装。详细见此说明:https://github.com/NVIDIA-AI-IOT/torch2trt 阅读全文
posted @ 2021-08-03 10:30 追风赶月的少年 阅读(1475) 评论(1) 推荐(0)
摘要:安装visualcppbuildtools_full.exe(链接:https://blog.csdn.net/u012247418/article/details/82314129) 重启电脑,在开始菜单中打开"Visual C++ 2015 x64 Native Build Tools Comm 阅读全文
posted @ 2021-08-01 18:30 追风赶月的少年 阅读(163) 评论(0) 推荐(0)
摘要:Python3安装支持库的过程中经常会遇到“Microsoft Visual C++ 14.0 is required”,此时就需要安装Visual C++ build tools生成工具,在运行build tool安装时,提示安装包损坏,FQ也无效 解决办法:在build tool安装时,提示安装 阅读全文
posted @ 2021-08-01 18:28 追风赶月的少年 阅读(9788) 评论(0) 推荐(0)