上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页

2021年12月11日

摘要: 参考 1. ExtremeC3Net: 使用高级C3模块的极轻量人像分割模型; 2. ExtremeC3Net_paper; 完 阅读全文
posted @ 2021-12-11 20:20 鹅要长大 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 参考 1. pytorch系列 -- 9 pytorch nn.init 中实现的初始化函数 uniform, normal, const, Xavier, He initialization; 完 阅读全文
posted @ 2021-12-11 20:20 鹅要长大 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 向上取整和向下取整; 完 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 1. 常规卷积 2. 分组卷积 2. 深度可分离卷积 Depthwise Convolution + Pointwise Convolution 2.1 Depthwise Convolution 2.2 Pointwise Convolution Depthwise(DW)卷积与Pointwise 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(252) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 概念 随机数 伪随机数 随机种子 若采用random.random(),每次都按照一定的序列(默认的某一个参数)生成不同的随机数。 若采用随机数种子random.seed(100),它将在所设置的种子100范围内调用random()模块生成随机数,如果再次启动random.seed(100),它则按 阅读全文
posted @ 2021-12-11 18:09 鹅要长大 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 参考 1. argmax_知乎; 完 阅读全文
posted @ 2021-12-11 18:09 鹅要长大 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 参考 1. PyTorch中的modules()和children()相关函数简析; 完 阅读全文
posted @ 2021-12-11 18:09 鹅要长大 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 参考 1. pytorch中num_workers详解; 完 阅读全文
posted @ 2021-12-11 18:00 鹅要长大 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 如何理解空洞卷积(dilated convolution)? 完 阅读全文
posted @ 2021-12-11 18:00 鹅要长大 阅读(47) 评论(0) 推荐(0) 编辑
摘要: FLOPS:注意全大写,是floating point operations per second的缩写,意指每秒浮点运算次数,理解为计算速度。是一个衡量硬件性能的指标。 FLOPs:注意s小写,是floating point operations的缩写(s表复数),意指浮点运算数,理解为计算量。可 阅读全文
posted @ 2021-12-11 18:00 鹅要长大 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 参考 1. adabelief; 2. paper; 3. github; 4. PPT; 完 阅读全文
posted @ 2021-12-11 16:34 鹅要长大 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 参考 1. pytorch:实例讲解DataLoader具体工作流程; 完 阅读全文
posted @ 2021-12-11 16:34 鹅要长大 阅读(77) 评论(0) 推荐(0) 编辑
摘要: api: CLASS torch.nn.PReLU(num_parameters=1, init=0.25, device=None, dtype=None) 注意参数和ReLU不一样的; 原理: PReLU(x)=max(0,x)+a∗min(0,x) ​其中,a是一个学习参数,默认a是对所有通道 阅读全文
posted @ 2021-12-11 16:34 鹅要长大 阅读(910) 评论(0) 推荐(0) 编辑

2021年12月9日

摘要: 参考 1. 关于文献阅读和科研选题; 完 阅读全文
posted @ 2021-12-09 10:19 鹅要长大 阅读(81) 评论(0) 推荐(0) 编辑

2021年11月10日

摘要: shell 将path目录下的png文件名中的old替换为new。 rename -v 's/old/new/' ./path/*.png 注意是小写的字幕v,如果是空的,直接就是空的。 rename -v 's/old//' ./path/*.png 即将path目录下的png文件名中的old删除 阅读全文
posted @ 2021-11-10 18:12 鹅要长大 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 论文: BiSeNet: Bilateral Segmentation Network for Real-time Semantic Segmentation 参考 1. BiSeNetV1: Bilateral Segmentation Network for Real-time Semantic 阅读全文
posted @ 2021-11-10 18:12 鹅要长大 阅读(136) 评论(0) 推荐(0) 编辑

2021年11月2日

摘要: 在Linux下运行shell脚本,报错 syntax error: unexpected end of file 使用vim打开脚本,执行命令: :set fileformat=unix 保存退出就可以了。问题解决。 原因是Linux下的文件结束符和Windows下的文件结束符不一样。 在Windo 阅读全文
posted @ 2021-11-02 18:05 鹅要长大 阅读(904) 评论(0) 推荐(0) 编辑
摘要: 卷积神经网络的参数计算 深度学习模型大小由网络决定,也就是网络结构的参数数量和数据类型决定的; 参考 1. 卷积神经网络的参数计算; 2. 深度学习模型大小由网络决定; 完 阅读全文
posted @ 2021-11-02 18:05 鹅要长大 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 给妹纸的深度学习教学(4)——同Residual玩耍; 2. 知乎_ResNet及其变种的结构梳理、有效性分析与代码解读; 3. 为什么会有ResNet? Why ResNet? 完 阅读全文
posted @ 2021-11-02 18:05 鹅要长大 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页

导航