Our new X account is live! Follow @wizwand_team for updates
WorkDL logo mark

Densely Connected Convolutional Networks

About

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 https://github.com/liuzhuang13/DenseNet .

Gao Huang, Zhuang Liu, Laurens van der Maaten, Kilian Q. Weinberger• 2016

Related benchmarks

TaskDatasetResultRank
Image ClassificationCIFAR-100 (test)--
3518
Image ClassificationCIFAR-10 (test)--
3381
Image ClassificationImageNet-1k (val)
Top-1 Accuracy77.9
1453
Image ClassificationImageNet (val)
Top-1 Acc79.7
1206
Person Re-IdentificationDuke MTMC-reID (test)
Rank-174.28
1018
Image ClassificationCIFAR-10 (test)--
906
Image ClassificationImageNet-1k (val)
Top-1 Acc77.6
706
Image ClassificationCIFAR-100 (val)--
661
Image ClassificationCIFAR-100--
622
Semantic segmentationCityscapes (val)
mIoU41.5
572
Showing 10 of 211 rows
...

Other info

Code

Follow for update