The Identity Mapping Construction Paradox
The degradation of training accuracy reveals an optimization paradox when comparing a shallower architecture to a deeper counterpart that adds extra layers. Because the solution space of the shallower model is a subspace of the deeper model, the deeper architecture should theoretically never yield higher training error than the shallower one.
This principle can be shown by construction: consider a deeper model where the initial layers are directly copied from a learned shallower model, and all additional layers are configured as identity mappings. By construction, this configuration produces the exact same function and training error as the learned shallower model.
Despite the existence of this feasible solution, standard gradient-based optimization solvers fail to locate it. In practice, optimizers applied to plain networks cannot find solutions that are comparably good or better than the identity-constructed solution within feasible training time, showing that plain deep architectures are fundamentally difficult to optimize.
0
1
Tags
Prep Sessions
Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
Ch.3 Deep Residual Network Architecture - Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
The Degradation Problem in Deep Networks - Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
Learn After
Match each concept regarding the identity mapping paradox to its correct description.
A deeper architecture should theoretically never yield higher training error than a shallower counterpart because the solution space of the shallower model is a ___ of the deeper model.
Order the steps used to demonstrate the identity mapping construction principle for deep architectures.
Explain why the 56-layer network's higher training error demonstrates an optimization problem rather than a representational limitation, referencing the identity mapping construction.