摘要:
论文精读 论文精读方法参考B站UP主跟李沐学AI 阅读顺序:Abastract -> Introduction -> Conclusion -> Related Work ResNet 网络结构 核心模块:Residual Block 代码实现 Transformer 网络结构 Multi-Head 阅读全文
摘要:
文档编辑 vim [path/of/file]:使用vim编辑文档 快捷键 普通模式 插入模式: i:[insert] 在当前字符前面插入新字符 a:[append] 在当前字符后面插入新字符 o:在当前行的下方插入一个新行,并进入插入模式 shift + A:在行尾插入字符(相当于换到最后一个字符 阅读全文
摘要:
markdown语法 latex语法 \(\vec{a}\): \vec{a} \(\vec{a} \cdot \vec{b}\): \vec{a} \cdot \vec{b} \(A \times B\): A \times B \(\hat{a}\): \hat{a} \(\mathbf{A}\ 阅读全文
摘要:
Latex语法 中文编码 % 导入相关包 \usepackage{xeCJK} \xeCJKsetup{CJKmath=true} 引用 % 图表的引用 \usepackage{hyperref} \hypersetup{hypertex=true, colorlinks=true, linkcol 阅读全文
摘要:
Day1 环境搭建 下载vscode 下载链接:https://pan.baidu.com/s/1Oo1TIrAKmlEuEfdn9EXgLQ?pwd=nkt9 配置vscode的python开发环境 教程:https://www.runoob.com/python3/python-vscode-s 阅读全文
摘要:
类的封装 类的封装 //使用注解自动生成Setter、Getter、toString、无参构造函数、全参构造函数 @Data @NoArgsConstructor @AllArgsConstructor public class Emp { private Integer id; //ID priv 阅读全文
摘要:
Preknowledge Visualization Weight & Bias Overfitting Data Augmentation Random crops and scales resize the short side of the image to [250, 400], and t 阅读全文
摘要:
基础概念 对比学习(Contrastive Learning) Computer Graphics Convex Hall Sort Color modulation Postman problem Voronoi MAT (Medial Axis Transformation) 中轴变换,用于简化 阅读全文
摘要:
Chapter 1 Definition of the Smart Vehicle Perception Autonomous Decision : brain of the vehicle (autonomously analyze, learn and decide) Automatic Con 阅读全文
摘要:
Java类的封装 利用lombok库函数,通过注解的方式简化类的形式 @Data //自动生成getter, setter, toString等方法 @NoArgsConstructor //自动生成无参构造函数 @AllArgsConstructor //自动生成全参构造函数 public cla 阅读全文