Alexnet

作者: CV_lsc | 来源:发表于2018-07-23 10:33 被阅读0次
Alexnet

Alexnet 网络是2012 Alex Krizhevsky 提出来的,是一个承上启下的网络,下面我来介绍一下此网络的结构。

flow kernel&stride output
start 227 227 3
conv1 11 11 4 55 55 96
LRN 55 55 96
pool1 3 3 2 27 27 96
conv2 5 5 1 (pad 2) 27 27 256
LRN 27 27 256
pool2 3 3 2 13 13 256
conv3 3 3 1 (pad 1) 13 13 384
conv4 3 3 1 (pad 1) 13 13 384
conv5 3 3 1 (pad 1) 13 13 256
pool3 3 3 2 6 6 256
fc6 4096 1
drop6 0.5
fc7 4096 1
drop7 0.5
fc8 1000

激活函数 : relu
参考文献:
https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf
http://ethereon.github.io/netscope/#/gist/e65799e70358c6782b1b

相关文章

  • Pytorch实现AlexNet解决自定义数据集(cifar10

    AlexNet 代码地址 Why AlexNet very good? 为什么Alexnet能在图2012 Ima...

  • 【技术博客】基于AlexNet网络的垃圾分类

    【技术博客】基于AlexNet网络的垃圾分类 AlexNet AlexNet模型来源于论文-ImageNet Cl...

  • CNN之——AlexNet

    深度卷积神经网络(AlexNet) AlexNet⾸次证明了学习到的特征可以超越⼿⼯设计的特征 AlexNet与L...

  • 2020 经典卷积神经网 AlexNet

    AlexNet 虽然 AlexNet 今天人们不会在采用或借鉴 AlexNet 来设计网络来,不过无疑是 Alex...

  • CNN经典模型总结

    LeNet-5 AlexNet VGG ResNet GoogLeNet Ng推荐论文阅读顺序:AlexNet——...

  • Conv_structure

    0.Alexnet Alexnet知乎讲解文章_paper 0.Network in Network Networ...

  • AlexNet论文笔记

    【1】AlexNet介绍 AlexNet由Alex Krizhevsky于2012年提出,夺得2012年ILSVR...

  • AlexNet

    AlexNet 首先对CNN有一个大致功能的初步理解:(1)一个图像经过卷积层提取特征(从图中可以看到,上一层的临...

  • AlexNet

    The Architecture 结构 AlexNet的结构如上图所示,共包含了8个学习层——5个卷积层与3个全连...

  • Alexnet

    Alexnet 网络是2012 Alex Krizhevsky 提出来的,是一个承上启下的网络,下面我来介绍一下此...

网友评论

      本文标题:Alexnet

      本文链接:https://www.haomeiwen.com/subject/cjedmftx.html