December 2018
Intermediate to advanced
764 pages
18h 18m
English
DenseNet is an extension of ResNet proposed by Huang et al. (https://arxiv.org/pdf/1608.06993.pdf). In ResNet blocks, the previous layer is merged into the future layer by summation. In DenseNet, the previous layer is merged into the future layer by concatenation. DenseNet connects all the layers to the previous layers and the current layer to the following layers.
In the following diagram, it can be seen how the feature maps are supplied as input to the other layers:

This way, it provides several advantages such as smoother gradients, feature transformation and so on. This also ...
Read now
Unlock full access