12 2021 档案

摘要: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 阅读(108) 评论(0) 推荐(0)
摘要:TorchViz 使用记录 1、按照 github 上的教程,报错了。。。 2、查了下,发现是只安装了 graphviz 的包,没安装软件,难怪 github 上给出的安装 graphviz 的命令那么奇怪。。。 3、https://graphviz.org/download/ 4、pip unin 阅读全文
posted @ 2021-12-07 12:31 SethDeng 阅读(330) 评论(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 阅读(43) 评论(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 阅读(59) 评论(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 阅读(108) 评论(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 阅读(2036) 评论(0) 推荐(0)
摘要:cv2.EMD() 简单解读 参考链接: 函数解读: https://samvankooten.net/2018/09/25/earth-movers-distance-in-python/ https://gist.github.com/svank/6f3c2d776eea882fd271bba1 阅读全文
posted @ 2021-12-02 10:57 SethDeng 阅读(1040) 评论(0) 推荐(0)