DPNs
DPNs, or Dual Path Networks, are a family of convolutional neural networks designed to combine the strengths of residual networks (ResNet) and dense networks (DenseNet) for image recognition. The core idea is to enable both feature reuse and new feature exploration within each block by maintaining two parallel pathways: a residual path that uses additive fusion and a dense path that uses concatenation to produce new features. Within a block, the input feature maps are processed to yield two sets of features which are then merged, resulting in an output whose channel dimension grows with depth.
The dual-path structure aims to preserve gradient flow while encouraging dense connectivity. This combination seeks to
Limitations include higher memory usage due to concatenated feature maps and added architectural complexity that can