Dense CNNs
Recent work has shown that convolutional networks can be substantially deeper, more accurate, and efficient to train if they contain shorter connections between layers close to the input and those close to the output. In this paper, we embrace this observation and introduce the Dense Convolutional Network (DenseNet), which connects each layer to every other layer in a feed-forward fashion. Whereas traditional convolutional networks with L layers have L connections - one between each layer and its subsequent layer - our network has L(L+1)/2 direct connections. For each layer, the feature-maps of all preceding layers are used as inputs, and its own feature-maps are used as inputs into all subsequent layers. DenseNets have several compelling advantages: they alleviate the vanishing-gradient problem, strengthen feature propagation, encourage feature reuse, and substantially reduce the number of parameters. We evaluate our proposed architecture on four highly competitive object recognition benchmark tasks (CIFAR-10, CIFAR-100, SVHN, and ImageNet). DenseNets obtain significant improvements over the state-of-the-art on most of them, whilst requiring less computation to achieve high performance. Code and pre-trained models are available at this https URL .
Densely Connected Convolutional Networks Gao Huang∗ Zhuang Liu∗ Laurens van der Maaten Cornell University Tsinghua University Facebook AI Research gh349@cornell.edu liuzhuang13@mails.tsinghua.edu.cn lvdmaaten@fb.com…
related reading
- CS231n Deep Learning for Computer Visioncs231n.github.io
- Convolutional Neural Networks, Explained | Towards Data Sciencetowardsdatascience.com
- Aman's AI Journal • Primers • Ilya Sutskever's Top 30aman.ai
- The Decade of Deep Learning | Leo Gaobmk.sh
- ImageNet Classification with Deep Convolutional Neural Networksproceedings.neurips.cc
- 1512.03385arxiv.org
- learning theorypeople.eecs.berkeley.edu
- neural netpeople.eecs.berkeley.edu
- ResNets: Why do they perform better than Classic ConvNets? (Conceptual Analysis) | Towards Data Sciencetowardsdatascience.com
- The Little Book of Deep Learningfleuret.org
- Scale-Invariant Recognition by Weight-Shared CNNs in Parallelproceedings.mlr.press
- Locally Scale-Invariant Convolutional NeuralNetworksarxiv.org