Expand Neurons, Not Parameters
Linghao Kong, Inimai Subramanian, Yonadav Shavit, Micah Adler, Dan Alistarh, Nir Shavit
TL;DR
This paper tackles polysemanticity and feature interference in neural networks by decoupling neuron count from non-zero parameter count through Fixed Parameter Expansion (FPE). By splitting neurons into edge-disjoint subneurons, FPE widens networks while preserving the parameter budget, reducing feature collisions and improving accuracy on both symbolic (Boolean DNF) tasks and real-world vision tasks using CLIP embeddings. The authors provide theoretical justification, show that even random splits reduce interference, and demonstrate scalability to deeper architectures and compatibility with structured sparsity and dynamic pruning. The findings offer an interpretable mechanism to exploit width to mitigate superposition, with practical implications for memory-limited accelerators where parameter movement dominates cost.
Abstract
This work demonstrates how increasing the number of neurons in a network without increasing its number of non-zero parameters improves performance. We show that this gain corresponds with a decrease in interference between multiple features that would otherwise share the same neurons. To reduce such entanglement at a fixed non-zero parameter count, we introduce Fixed Parameter Expansion (FPE): replace a neuron with multiple children and partition the parent's weights disjointly across them, so that each child inherits a non-overlapping subset of connections. On symbolic tasks, specifically Boolean code problems, clause-aligned FPE systematically reduces polysemanticity metrics and yields higher task accuracy. Notably, random splits of neuron weights approximate these gains, indicating that reduced collisions, not precise assignment, are a primary driver. Consistent with the superposition hypothesis, the benefits of FPE grow with increasing interference: when polysemantic load is high, accuracy improvements are the largest. Transferring these insights to real models (classifiers over CLIP embeddings and deeper multilayer networks) we find that widening networks while maintaining a constant non-zero parameter count consistently increases accuracy. These results identify an interpretability-grounded mechanism to leverage width against superposition, improving performance without increasing the number of non-zero parameters. Such a direction is well matched to modern accelerators, where memory movement of non-zero parameters, rather than raw compute, is the dominant bottleneck.
