上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 使用LaTex排版图片,考虑到高清,一般都使用矢量图,制作矢量图可以用PowerPoint、Visio、Adobe Illustrator、draw.io等绘图工具,也可以编程来输出,比如用 Python及相关包、Matlab等。 导入图片,要用到 graphicx 宏包,\includegraph 阅读全文
posted @ 2023-04-28 16:44 BooTurbo 阅读(788) 评论(0) 推荐(0) 编辑
摘要: Table表格 1、Table name、Table caption in lowercase or in uppercase and printed in the same line 有些会议和期刊提供的LaTex模板,其中的表格的caption显示都是大写的,如图: 要改成小写的话,可以添加几行 阅读全文
posted @ 2023-04-28 12:57 BooTurbo 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 神经网络每训练1个epoch 会紧接着 evaluate一下,PyTorch提供了model.eval( )和torch.no_grad( ),验证时会使用 model.eval( ) 开启评估模式, 在训练阶段,网络的Dropout 层和BatchNorm 层处于开启的模式; 在验证阶段,代码中加 阅读全文
posted @ 2023-04-27 17:28 BooTurbo 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 在训练神经网络时,用到的数据量可能很大,训练周期较长,如果半途中断了训练,下次从头训练就会很费时间,这时我们就想断点续训。 一、神经网络模型的保存,基本两种方式:1. 保存完整模型model, torch.save(model, save_path) 2. 只保存模型的参数, torch.save( 阅读全文
posted @ 2023-04-27 14:52 BooTurbo 阅读(1174) 评论(0) 推荐(1) 编辑
摘要: 二元交叉熵(Binary cross entropy)是二分类中常用的损失函数,它可以衡量两个概率分布的距离,二元交叉熵越小,分布越相似,其公式如下: 我们用jupyter notebook举例解释一下, 假设 1个图像样本由神经网络处理后的输出是 size 10×4 的tensor,随机生成一个t 阅读全文
posted @ 2023-04-25 14:12 BooTurbo 阅读(1848) 评论(0) 推荐(0) 编辑
摘要: 使用Latex排版,可以使用JabRef来管理引用的文献。安装简单: 命令行: sudo snap install jabref 阅读全文
posted @ 2023-02-03 15:32 BooTurbo 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 运行程序时报错:Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 具体如图: 当我们有这个报错时就看不到图像输出,所以我们必须安装GUI后端(也就是图形用户界面),通过这 阅读全文
posted @ 2022-08-14 15:25 BooTurbo 阅读(4276) 评论(0) 推荐(0) 编辑
摘要: 在OTB100上测试tracker,然后用pysot-toolkit平台对比跟踪算法时, 出现报错:numba.core.errors. TypingError: Failed in nopython mode pipeline (step: nopython frontend) non-preci 阅读全文
posted @ 2022-08-14 14:30 BooTurbo 阅读(1974) 评论(0) 推荐(0) 编辑
摘要: 运行代码出现找不到Cython模块报错,如下: 安装升级下Cython可以解决: pip3 install --upgrade cython 阅读全文
posted @ 2022-08-10 21:53 BooTurbo 阅读(3292) 评论(0) 推荐(0) 编辑
摘要: 在docker容器中测试tracker模型时,报告dbind-WARNING:couldn't register with accessibility bus: an apparmor policy prevents this sender from sending this message to 阅读全文
posted @ 2022-07-31 16:10 BooTurbo 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页