- 博客(4)
- 收藏
- 关注
原创 卷积计算的底层实现(Caffe)
卷积本身的执行过程是通过在特征图上滑动卷积核来完成的。但是在Caffe的底层实现是通过矩阵相乘的方式一步完成卷积的操作。假设输入图像及卷积和大小如下图所示:在Caffe的实现中,它分别将特征图和卷积转换为矩阵。具体的转换如下:卷积核对于2D卷积,本身是四维的卷积核,将其转换为二维由Cout×C×K×KC_{out}\times C \times K \times KCout×C×K×...
2019-07-11 01:10:31 1783
原创 机器学习常用数值优化算法
假设损失函数为 J(θ)J(\theta)J(θ),参数为 θ∈Rn\theta \in R^nθ∈Rn一阶优化算法SGD (随机梯度下降)参数更新公式θt+1=θt−α∇J(θt) \theta_{t+1} = \theta_{t} - \alpha \nabla J(\theta_{t})θt+1=θt−α∇J(θt)其中,α\alphaα为学习率。缺点: SGD靠近极...
2019-07-10 21:43:44 816
原创 [LeetCode] 32. Longest Valid Parentheses
[LeetCode] 32. Longest Valid Parentheses问题描述Given a string containing just the characters ‘(’ and ‘)’, find the length of the longest valid (well-formed) parentheses substring.思路 – dpdp[i]表示以第i个字符...
2019-07-03 12:48:26 155
原创 AlexNet 论文笔记
ImageNet Classification with Deep Convolutional Neural Networks这篇文章主要是针对阅读AlexNet论文后的论文笔记,方便自己日后复习。网络结构
2018-06-14 21:10:48 256
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人