A Mathematical Theory of Reusable Neural Bases for Network Compression

TL;DR

LRNBA architecture employs linear neural bases for parameter-efficient network compression, achieving comparable or superior performance with fewer parameters.

cs.LG 🔴 Advanced 2026-09-02 76 views
Binshuai Wang
model compression parameter sharing deep learning neural architecture efficiency

Key Findings

Methodology

The approach models each network block as a linear combination of shared neural bases ϕj(x) = σ(⟨x, sj⟩ + bj)pj, inspired by linear algebra and Fourier bases. A coefficient table {αj,l} dynamically modulates each basis’s contribution across layers. The neural bases serve as atomic nonlinear functions, geometrically interpreted as vector fields from input to output space. During training, gradients of shared bases are normalized to prevent instability. The architecture extends to attention and projection modules, supporting sub-neural reuse, thus significantly reducing parameters while maintaining stability and performance. Extensive experiments on function approximation and language modeling demonstrate superior convergence speed, lower final loss, and parameter savings compared to classical models.

Key Results

  • In function approximation, LRNBA achieves similar convergence and lowest loss with only 1/7 of ResNet’s parameters, outperforming smaller baselines. Widening the network by 4× accelerates training by 20%, with half the parameters. On language tasks, it reduces perplexity by 15%, with faster convergence and 60% fewer parameters. Ablation studies confirm the effectiveness of neural basis reuse and energy pruning, enhancing sparsity and robustness.
  • The model maintains training stability in deep networks, avoiding vanishing gradients. It supports constructing wider and deeper networks under the same memory budget, improving capacity and generalization. Results show that parameter sharing at the neural basis level outperforms traditional layer-wise sharing, especially in large-scale scenarios.
  • Energy-based pruning based on coefficient sums further compresses the network, removing redundant bases while preserving accuracy. The architecture’s flexibility allows for efficient scaling and deployment in resource-constrained environments.

Significance

This work addresses fundamental bottlenecks in deploying large AI models by introducing a theoretically grounded, highly parameter-efficient architecture. It enables training and inference of wider, deeper networks within limited hardware budgets, reducing costs and energy consumption. The neural basis concept offers a new perspective on model compression, blending geometric intuition with algebraic formalism. Its ability to maintain or improve performance with fewer parameters paves the way for democratizing AI, making advanced models accessible on edge devices and in resource-limited contexts. The framework also opens avenues for further research into neural basis optimization, sparsity, and interpretability, promising a paradigm shift in neural network design.

Technical Contribution

The paper introduces the concept of neural bases as atomic nonlinear functions, providing a geometric vector field interpretation. It formulates a network architecture where residual blocks are constructed from shared bases with layer-specific coefficients, decoupling parameter count from depth. The approach extends to attention and projection modules, supporting sub-neural reuse. The training strategy involves gradient normalization of shared bases to ensure stability. Theoretical analysis confirms the near-linear relationship between parameter count and width, with minimal dependence on depth. Experimental validation demonstrates superior parameter efficiency, convergence speed, and robustness over classical architectures, establishing a new theoretical and engineering foundation for neural network compression.

Novelty

This is the first systematic integration of neural bases with geometric vector field interpretation to enable high-reuse, parameter-efficient deep networks. Unlike prior work focusing on layer-wise sharing or low-rank approximations, LRNBA employs shared nonlinear atomic functions across layers, nearly decoupling parameters from depth. The framework supports multi-component extension, including attention and sub-neural reuse, offering unprecedented flexibility and compression. Its theoretical grounding and extensive empirical validation distinguish it from existing parameter-sharing and compression methods, marking a significant innovation in neural network design.

Limitations

  • Training complexity increases due to dynamic computation and gradient normalization of shared bases, leading to higher computational costs and longer training times. This may limit scalability in very large models.
  • The approach assumes the effectiveness of neural basis reuse across tasks; in some specialized or highly sparse scenarios, performance might degrade.
  • Further validation on large-scale industrial datasets and multi-task settings is needed to confirm generalization and robustness. Future work should optimize training efficiency and explore adaptive basis selection.

Future Work

Future research will focus on optimizing training algorithms for faster convergence, exploring adaptive basis learning, and extending the framework to multi-task and multimodal applications. Integrating sparsity constraints and quantization techniques could further enhance model compression. Additionally, large-scale deployment in real-world scenarios will be pursued to validate robustness and scalability, aiming to make neural basis-based architectures a standard in resource-efficient AI.

AI Executive Summary

The rapid growth of large AI models has brought about remarkable performance gains but also significant challenges in memory and computational costs. Traditional architectures, with parameters tied closely to network depth and width, struggle to scale efficiently within hardware constraints. To address this, the paper introduces the Linear Reusable Neural Bases Architecture (LRNBA), a novel framework inspired by the principles of linear algebra and vector fields. By representing each network block as a linear combination of shared neural bases, LRNBA achieves high parameter efficiency and stable training dynamics.

This architecture draws from the concept of atomic nonlinear functions, or neural bases, which serve as fundamental building blocks. Geometrically, these bases are interpreted as vector fields, providing an intuitive understanding of how input features are transformed through the network. The model employs a coefficient table to dynamically modulate the contribution of each basis across layers, enabling the construction of wider and deeper networks without proportional parameter growth.

Experimental results on function approximation and language modeling tasks demonstrate that LRNBA outperforms classical architectures in convergence speed, final loss, and parameter compression ratio. For instance, in a function approximation task, it reaches comparable accuracy with only 1/7 of the parameters of a ResNet, and in language tasks, it reduces perplexity by 15% while halving the parameter count. The approach also supports sub-neural reuse and energy-based pruning, further enhancing efficiency and robustness.

This work offers a new paradigm for neural network design, emphasizing parameter sharing at the atomic level. It addresses critical bottlenecks in deploying large models, making AI more accessible and sustainable. Future directions include optimizing training efficiency, extending to multi-task scenarios, and validating in industrial applications, promising a significant leap toward resource-efficient deep learning.

Deep Dive

Abstract

As large AI models become increasingly prevalent across a wide range of applications, memory cost has become a critical bottleneck in both training and inference. To mitigate this issue, we introduce the Linear Reusable Neural Bases Architecture (LRNBA), a novel framework aimed at improving parameter efficiency and reducing memory cost. Inspired by recurrent neural network (RNN) designs, the core idea of our approach is to represent each network block as a linear combination of a shared set of neural bases, thereby enjoying highly network compression rate while maintaining stable training. The proposed architecture allows for the construction of significantly wider and deeper networks under the same parameter budget. Extensive experiments demonstrate that our model achieves comparable or even faster convergence and lower loss than classical architectures, while maintaining stable training dynamics.

cs.LG cs.AI