Fork me on CSDN
摘要: 首先我是一名在校研究生,目前主要研究方向为目标检测。 欢迎关注我的CSDN博客心系五道口,也希望大家关注这个博客园账号 有任何问题,可通过邮箱2395856915@qq.com与我交流联系,谢谢大家 阅读全文
posted @ 2021-05-15 17:20 追风赶月的少年 阅读(57) 评论(0) 推荐(0) 编辑
摘要: def batch_norm(X, gamma, beta, moving_mean, moving_var, eps, momentum): if not torch.is_grad_enabled():#In prediction mode X_hat = (X-moving_mean)/tor 阅读全文
posted @ 2021-12-30 15:25 追风赶月的少年 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1、Bagging trains n base learner in parallel 2、Make decisions by averaging learers' outputs(regeression) or majority voting(classfication) 3、Each learn 阅读全文
posted @ 2021-12-06 15:01 追风赶月的少年 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1.1网络爬虫有何用 重复性的手工流程,可以用网络爬虫技术实现自动化处理。 在理想状态下,网络爬虫并不是必需品,每个网站都应该提供API,以结构化的格式共享他们的数据,现实情况是,他们限制了抓取的数据,以及访问这些数据的频率。我们不能仅仅依赖API去访问我们所需的在线数据。 1.2网络爬虫是否合法 阅读全文
posted @ 2021-09-17 16:39 追风赶月的少年 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 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 追风赶月的少年 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 错误提示: 为pytorch不同版本进行更新迭代时引起的警告,某些参数被取代了 修正: criterion = torch.nn.BCELoss(size_average=True) 改为: criterion = torch.nn.BCELoss(reduction='mean') criteri 阅读全文
posted @ 2021-08-24 15:54 追风赶月的少年 阅读(7382) 评论(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 追风赶月的少年 阅读(1651) 评论(0) 推荐(0) 编辑
摘要: YOLOX: Exceeding YOLO Series in 2021 图1:YOLOX和其他最先进的物体检测器在移动设备上精确模型的速度-精度权衡(上)和精简模型的尺寸-精度曲线(下)。 摘要 在本报告中,我们介绍了对YOLO系列进行了有经验的改进,形成了一种新的高性能检测器——YOLOX。我们 阅读全文
posted @ 2021-08-17 10:29 追风赶月的少年 阅读(3105) 评论(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 追风赶月的少年 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 错误提示: 解决办法: 1.找到该目录 2.删除带~的文件夹(这种情况是由插件安装失败/中途退出引起的,这会导致插件安装异常) 阅读全文
posted @ 2021-08-10 10:45 追风赶月的少年 阅读(2493) 评论(0) 推荐(0) 编辑
摘要: 错误提示: 解决办法: 进入你的虚拟环境,输入以下内容 python -m ensurepip python -m pip install --upgrade pip 阅读全文
posted @ 2021-08-10 10:35 追风赶月的少年 阅读(61) 评论(0) 推荐(0) 编辑