papers_we_read

Densely Connected Convolutional Networks (DenseNet)

Gao Huang, Zhuang Liu, Laurens van der Maaten, Kilian Q. Weinberger, CVPR-2017

Summary

This paper proposes a Densely Connected Convolutional Networks (DenseNet) which is an extension of the ResNet idea, in which every layer is connected to every other layer(hence the word Dense), and in which the combination is done via concatenation instead of simple summation. It has significantly fewer parameters than ResNet and also achieved SOTA performance in many object recognition tasks.
This paper also got the Best Paper Award in CVPR 2017

Overview

Implementation Details

Strengths

Weaknesses

Implementation