文章列表

10k9 分钟

如无特殊说明,默认使用 pytorch 编写代码 (虽然它被称为 PyTorch,但是代码中使用 torch 而不是 pytorch ) import torch# 一、数据操作 ——Pytorch # 常见数据类型 —— 张量 (tensor) 张量也称 n 维数组。一维张量对应数学上的 向量(vector) ; 二维张量对应数学上的 矩阵(matrix) ; 二维以上的张量没有特殊的数学名称。 # 常用定义方法 # 定义一维向量 vector x = torch.arange(12)x>> tensor([ 0, 1, 2, 3, 4, 5, 6
4.4k4 分钟

# Written at the Beginning 说是心血来潮,倒也蓄谋已久,心心念念的个人博客终于开了个头。 为什么想写博客呢,一是为了记录自己的学习过程(博主是个超级健忘的人),二是企图通过更新博客的方式 push 自己提高效率,好好学习(博主是个超级懒的人)。 经过几天的兜兜转转,踩了无数坑后,一个像样的博客总算是搭好了,先截图纪念一下 init-page,期待后续功能的完善和补充 _(自我 push 一下)。 # 博客搭建 本站采用的是 Hexo-GitHub-Netlify-Cloudflare 的架构。 简单来说就是使用 Hexo 生成博客框架,使用 GitHub 托管网站
8111 分钟

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. # Quick Start # Create a new post h$ hexo new "My New Post"More info: Writing # Run server h$ h