
cnn
chenlongzhen_tech
[声明] 此账号不在更新,请关注 http://blog.youkuaiyun.com/tech_chenlongzhen
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
temp
以CNN为例 CNN 结构 tensorflow代码实现alexnet分类 keras代码vgg分类 主要结构 数据输入层/ Input layer 卷积计算层/ CONV layer ReLU激励层 / ReLU layer 池化层 / Pooling layer 全连接层 / FC layer Batch Normalization层(可能有) relu(Cifar-10的训练走向)将神经元的输原创 2017-04-10 15:40:22 · 786 阅读 · 0 评论 -
nn pic model preprocess note
inception 预处理https://github.com/fchollet/keras/blob/master/keras/applications/inception_v3.pydef preprocess_input(x): x /= 255. x -= 0.5 x *= 2. return xvgg 预处理 if len(x.shape) == 3:原创 2017-04-13 16:41:51 · 12659 阅读 · 1 评论