Tuesday, September 8, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow

September 8, 2026
in Technology and Engineering
Blake Davidson
By Blake Davidson Scienmag Editorial Profile - Data Science
Reading Time: 5 mins read
0
Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow

Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

For nearly as long as artificial neural networks have existed, one rule has been treated as almost sacrosanct: never initialize all weights and biases to zero. From foundational textbooks to standard online tutorials, students of machine learning have been taught that zero initialization causes every neuron in a layer to compute identical outputs, receive identical gradients, and therefore learn nothing — a phenomenon known as the failure of symmetry breaking. A new study from researchers at the Institute for Basic Science in South Korea now argues that this decades-old conviction is, at best, an oversimplification, and at worst, outright wrong.

In a paper published in Neural Processing Letters, Jongwoo Seo and Wuhyun Koh demonstrate that neural networks can learn successfully even when every weight and bias in the entire model is set to zero, provided the right mechanisms are in place. Their experiments span multilayer perceptrons (MLPs), convolutional neural networks (CNNs), residual networks (ResNets), vision transformers (ViTs), and multilayer perceptron mixers (MLP-Mixers), evaluated on MNIST, CIFAR-10, CIFAR-100, and Tiny ImageNet. In several settings, zero initialization matched — and in some cases exceeded — the performance of conventional random initialization, with MLP-Mixers delivering comparable results despite having no randomly initialized parameters at all.

The key insight emerged not from exotic mathematics but from a careful rereading of the standard backpropagation equations that underpin virtually all modern deep learning. The authors manually implemented forward and backward propagation from scratch using NumPy, covering architectures from basic MLPs to Transformers. In doing so, they noticed something mathematically nontrivial about the simplest case: for a linear transformation y = wx, the gradient with respect to the weight w is simply the input x. Crucially, this local gradient does not depend on the weight w itself. While the value of w can influence upstream error signals flowing from higher layers, it vanishes from the local chain rule computation.

This observation has profound consequences for how symmetry breaking is understood. In formal terms, the gradient of the loss with respect to a weight is the product of two factors: the upstream error signal from the layer above and the input activation from the layer below. The traditional argument against zero initialization assumes that if weights are identical, gradients will also be identical, freezing the network in a state of permanent uniformity. But the researchers point out that gradient diversity is determined primarily by the input values flowing into each weight — and those inputs do not need to come from randomly initialized weights. If the input activations differ across nodes, then the weight gradients will differ as well, breaking symmetry without any randomness in the weight values themselves.

So why does training fail in the textbook case of a fully zero-initialized network? The authors show that failure requires two consecutive zero-initialized layers. Under that condition, both essential functions of a layer during backpropagation break down simultaneously: weight updates halt because input activations are zero, and gradient transmission to lower layers halts because the weights themselves are zero. Learning comes to a complete standstill. But this deadlock is remarkably easy to break. Injecting random noise into node outputs during the forward pass gives the inputs the diversity they need, allowing gradients to differentiate and weights to begin diverging. Alternatively, residual connections can carry diverse input values directly to the next layer, achieving the same effect.

Perhaps most striking is the conceptual reframing this implies. When noise is injected into zero-initialized nodes, the resulting random activations produce gradient variation much as randomly assigned weights would. The authors therefore argue that conventional random initialization can be reinterpreted as a special case of zero-centered symmetry breaking — a form of randomness applied at the node level rather than the weight level. In their colorful analogy, random initialization splashes vibrant colors onto a canvas, while zero initialization begins with a pencil sketch that gradually acquires structure. The two strategies, long considered fundamentally different, may simply occupy different points on a continuum of initialization approaches.

The experimental results bear this out. When all weights and biases were set to zero, training failed as expected — but with residual connections or node-level noise added, learning proceeded successfully. Beyond the pure zero case, the team examined mixed initialization schemes in which only some layers are zero-initialized. On MNIST, MLPs achieved their highest accuracy under a “zero-alternate” setting applied to specific layers. For CNNs on CIFAR-10, models with roughly 20 percent of parameters randomly initialized tended to outperform fully random baselines, and zero initialization in the final layer produced faster early gains in accuracy across benchmarks.

The picture for contemporary architectures is more nuanced but still remarkable. On CIFAR-10 and CIFAR-100, ResNets and ViTs showed some statistically significant performance decreases under certain zero initialization conditions, yet other conditions maintained or improved performance. MLP-Mixers proved especially resilient, with several settings preserving accuracy despite extensive zero initialization. The location of zero-initialized layers mattered greatly: applying the scheme to layers closer to the input within the MLP module consistently produced significant performance drops, suggesting that where symmetry is broken may be as important as how.

Not every component cooperates with zero initialization, and the study is candid about the pitfalls. Batch normalization, which follows each layer operation in standard ResNets, becomes pathological when inputs are zero or uniform: the variance collapses, the normalization denominator shrinks to a tiny epsilon value, and gradients explode to enormous magnitudes — learning technically proceeds, but in a manner completely contrary to the layer’s design intent. For this reason, the authors restricted zero initialization in ResNets to the fully connected layers at the network’s end. Layer normalization behaves differently: because it normalizes across features within each sample rather than across channels, zero-initialized weights paired with nonzero biases still permit healthy output distributions. Architectures like ViTs and MLP-Mixers sidestep the issue entirely by applying residual connections before layer normalization.

Activation functions impose their own constraints. Popular functions like ReLU output a gradient of zero when their input is zero, blocking downward gradient flow — so the framework requires activation functions whose derivative is nonzero at the origin, such as Leaky ReLU or the Gaussian Error Linear Unit (GELU). Optimizers matter too: Adam, which dominates modern training, discards raw gradient magnitudes in its first update, effectively assigning gradients of approximately zero, one, or negative one based on direction alone, and preserving gradient information in subsequent steps.

To systematize these findings, the authors propose the “Seo Integrated Zero Initialization: Foundational Scheme (SIZIFS)” — a unified conceptual framework, its name deliberately echoing Sisyphus, that classifies initialization strategies into three categories: weight-level random initialization, node-level random initialization (in which all weights and biases are zero and randomness is injected into nodes), and context-dependent methods that fit neither category. Because learning is possible even without any weight initialization at all, the very concept of neural network initialization expands to encompass node-level and architectural approaches.

The work is not without limitations. The authors acknowledge that they provide no rigorous mathematical proof for why zero initialization can rival random initialization, that hardware constraints prevented experiments on full ImageNet, and that detailed statistical analyses of weight distributions and gradient magnitudes across training steps remain future work. They also raise tantalizing questions: whether zero initialization mimics synaptic resetting observed in biological brains during sleep, and whether new architectures could be designed specifically to exploit it. Still, they draw an evocative historical parallel — just as the same celestial observations once supported both geocentric and heliocentric models, the same backpropagation equations that justified avoiding zero initialization can, on closer inspection, justify embracing it.

The authors describe their work as a potential “Copernican shift” in how the field understands initialization. Whatever the ultimate practical impact, the message is clear: one of deep learning’s oldest certainties deserves a fresh look, and the humble zero may hold more power than anyone supposed.

Subject of Research: Enabling successful training of artificial neural networks with all weights and biases initialized to zero, and reframing random initialization as a special case of zero-centered symmetry breaking

Subject of Research: Technology and Engineering

Article Title: Deep Learning with Zero Initialization: Revisiting Symmetry Breaking and Gradient Flow

Article References: Seo, J., & Koh, W. (2026). Deep Learning with Zero Initialization: Revisiting Symmetry Breaking and Gradient Flow. Neural Processing Letters, 58(3), Article 38. https://doi.org/10.1007/s11063-026-11846-1

Image Credits: AI Generated

DOI: 10.1007/s11063-026-11846-1

Keywords: artificial neural networks, zero initialization, symmetry breaking, gradient flow, backpropagation, weight initialization, node-level noise, residual connections, MLP-Mixer, vision transformer, batch normalization, layer normalization

Cite Scienmag News

Blake Davidson. (September 8, 2026). Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow. Scienmag. https://scienmag.com/deep-learning-from-zero-how-initialization-shapes-symmetry-breaking-and-gradient-flow/

Blake Davidson. "Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow." Scienmag, 8 September 2026, https://scienmag.com/deep-learning-from-zero-how-initialization-shapes-symmetry-breaking-and-gradient-flow/. Accessed 8 September 2026.

Blake Davidson. "Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow." Scienmag. September 8, 2026. https://scienmag.com/deep-learning-from-zero-how-initialization-shapes-symmetry-breaking-and-gradient-flow/

Tags: comparison of zero and random initializationconvolutional neural networks weight initializationdeep learning model training without random weightseffects of zero bias initializationgradient flow in deep learningimpact of initialization on neural network trainingimpact of weight initialization on gradient flowinfluence of initialization on neural network performanceMLP-Mixers zero parameter trainingmultilayer perceptrons zero initializationneural network initializationneural network learning mechanismsnew research on neural network training methodsresidual networks and zero initializationresidual networks training dynamicsrole of initialization in gradient propagationsymmetry breaking in deep learningsymmetry breaking in neural networkstraining neural networks with zero weightsvision transformers and weight initializationvision transformers initializationzero weight initializationzero weight initialization in neural networks
Share26Tweet16
Previous Post

Trial tests virtual reality hypnosis for patients in protective isolation

Next Post

New LUISA algorithm leverages causal relationships for smarter feature selection

Related Posts

New LUISA algorithm leverages causal relationships for smarter feature selection
Technology and Engineering

New LUISA algorithm leverages causal relationships for smarter feature selection

September 8, 2026
Chitosan-templated MgO nanorods made via green synthesis boost hydrazine electrooxidation
Technology and Engineering

Chitosan-templated MgO nanorods made via green synthesis boost hydrazine electrooxidation

September 8, 2026
Shrinking paper microfluidic devices enables reagent-saving colorimetric dopamine detection
Technology and Engineering

Shrinking paper microfluidic devices enables reagent-saving colorimetric dopamine detection

September 8, 2026
Metal–ligand orbital hybridization boosts efficient, long-lasting d10 carbene TADF OLEDs
Technology and Engineering

Metal–ligand orbital hybridization boosts efficient, long-lasting d10 carbene TADF OLEDs

September 8, 2026
Musculoskeletal disorder burden rises globally and across Asia through 2023
Technology and Engineering

Musculoskeletal disorder burden rises globally and across Asia through 2023

September 8, 2026
Cool façade paints cut heat, energy use, and microclimate warming in tropics
Technology and Engineering

Cool façade paints cut heat, energy use, and microclimate warming in tropics

September 8, 2026
Next Post
New LUISA algorithm leverages causal relationships for smarter feature selection

New LUISA algorithm leverages causal relationships for smarter feature selection

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • New LUISA algorithm leverages causal relationships for smarter feature selection
  • Deep Learning from Zero: How Initialization Shapes Symmetry Breaking and Gradient Flow
  • Trial tests virtual reality hypnosis for patients in protective isolation
  • Online forums reveal patient experiences of life after prostate cancer radiation

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading