摘要: Overleaf 使用 表格 # 导入宏包 \documentclass{article} \usepackage{float}%提供float浮动环境 \usepackage{multirow} \usepackage{booktabs}%提供命令\toprule、\midrule、\bottom 阅读全文
posted @ 2022-07-15 11:38 SethDeng 阅读(2017) 评论(0) 推荐(0) 编辑
摘要: Latex 常用字符及字体变换 字体变换 1、斜体 \emph{文字} 2、下划线 \underline{文字} 3、粗体 (快捷键:ctrl+B) \textbf{文字} 4、罗马数字 大写:\uppercase\expandafter{\romannumeral2} 小写:\romannumer 阅读全文
posted @ 2022-07-15 00:08 SethDeng 阅读(2431) 评论(0) 推荐(0) 编辑
摘要: MarkText 使用 1、安装(Typora突然就收钱了,安了个盗版的电脑还被黑了。。。。。。贫民窟靓仔无奈转用Marktext)~~安得广厦千万间,大庇天下寒士俱欢颜啊~~ https://github.com/marktext/marktext#download-and-installatio 阅读全文
posted @ 2022-07-14 23:41 SethDeng 阅读(5186) 评论(0) 推荐(1) 编辑
摘要: PyTorch 可复现设置 参考链接: https://www.jianshu.com/p/b95ec7351603 影响模型可复现性有以下几个因素: 1 随机种子 2 Dataloader 3 不确定性的算法 具体的看上面的链接,简单来说,加上下面这两段就ok了: def set_seed(see 阅读全文
posted @ 2022-01-04 23:25 SethDeng 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Pytorch 求导机制 参考链接: https://zhuanlan.zhihu.com/p/38475183(报错解决,情况1) https://blog.csdn.net/m0_38129460/article/details/90405086(Inplace operation) https 阅读全文
posted @ 2021-12-07 15:19 SethDeng 阅读(77) 评论(0) 推荐(0) 编辑
摘要: TorchViz 使用记录 1、按照 github 上的教程,报错了。。。 2、查了下,发现是只安装了 graphviz 的包,没安装软件,难怪 github 上给出的安装 graphviz 的命令那么奇怪。。。 3、https://graphviz.org/download/ 4、pip unin 阅读全文
posted @ 2021-12-07 12:31 SethDeng 阅读(251) 评论(0) 推荐(0) 编辑
摘要: Linux下常用命令: 参考链接: https://www.runoob.com/linux/linux-command-manual.html 文件管理 1 mv source_file(文件) dest_file(文件) 2 mv source_file(文件) dest_directory(目 阅读全文
posted @ 2021-12-07 02:03 SethDeng 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Git常用操作: Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 Ubuntu安装git: sudo apt update sudo apt install git 将本地代码上传到 github: 法一:(新建工程 阅读全文
posted @ 2021-12-07 01:16 SethDeng 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 损失函数: https://zhuanlan.zhihu.com/p/77686118 这篇文章概括的很好了。。。总结下: 1 Loss Function vs Cost Function vs Objective Function 适用 损失函数 Loss Function 针对单个训练样本而言 阅读全文
posted @ 2021-12-02 13:29 SethDeng 阅读(81) 评论(0) 推荐(0) 编辑
摘要: transforms.RandomResizedCrop() 参考链接: https://zhuanlan.zhihu.com/p/53367135 https://blog.csdn.net/thequitesunshine007/article/details/118703054 https:/ 阅读全文
posted @ 2021-12-02 12:47 SethDeng 阅读(1889) 评论(0) 推荐(0) 编辑