摘要:
【李宏毅】2024大语言模型课程 课程学习 课程链接:https://speech.ee.ntu.edu.tw/~hylee/genai/2024-spring.php Bilibili相关视频链接:https://www.bilibili.com/video/BV1XS411w7qr GPT: A 阅读全文
摘要:
基本方法 竞赛思路步骤 观察训练集和测试集的数据分布 库函数的使用 sklearn 安装依赖: pip install scikit-learn datasets from sklearn import datasets pixel_values, targets = datasets.load_d 阅读全文
摘要:
安装Docker 添加国内镜像加速器 https://dockerpull.org/ 修改文件/etc/docker/daemon.json {"registry-mirrors": ["https://dockerpull.org"]} 保存好后执行下面两条命令: sudo systemctl d 阅读全文
摘要:
论文精读 论文精读方法参考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:在行尾插入字符(相当于换到最后一个字符 阅读全文
摘要:
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 阅读全文