TLDR: The research paper introduces SBS (Spectral Bias Suppression), a novel method to enhance the parameter efficiency of Neural Representation for Neural Networks (NeRN). NeRN, which uses implicit neural representations to compress CNN weights, suffers from spectral bias, hindering its ability to reconstruct high-frequency details. SBS addresses this by proposing two techniques: Unidirectional Ordering-based Smoothing (UOS) to improve kernel smoothness in the output space, and UOS-aware Random Fourier Features (UOS-RFF) to adaptively modulate the frequency bandwidth of input encodings. Experiments on CIFAR-10, CIFAR-100, and ImageNet demonstrate that SBS achieves significantly better reconstruction accuracy with fewer parameters compared to existing methods, even without external supervision.
Neural networks have become incredibly powerful, capable of representing complex data like 3D scenes, images, and videos. A recent advancement, Neural Representation for Neural Networks (NeRN), extends this concept to represent the weights of convolutional neural networks (CNNs, the building blocks of many image-processing AI models). This offers exciting possibilities for compressing these large models, making them more suitable for devices like mobile phones and specialized AI hardware.
However, the standard multi-layer perceptrons (MLPs) used in NeRN face a challenge known as ‘spectral bias.’ In simple terms, these MLPs are better at learning smooth, low-frequency patterns and struggle to capture the intricate, high-frequency details essential for accurate model reconstruction. This limitation means that to maintain high accuracy, NeRN often requires a significant number of parameters, sometimes nearly half the size of the original network, which reduces its compression benefits.
Introducing SBS: Suppressing Spectral Bias for Enhanced Efficiency
To overcome this, researchers have developed a new method called Spectral Bias Suppression (SBS). SBS is designed to make NeRN more parameter-efficient by directly tackling the spectral bias issue. It achieves this through two main techniques:
1. Unidirectional Ordering-based Smoothing (UOS): Imagine the weights of a CNN as a landscape. UOS aims to make this landscape smoother in a specific way. It focuses on improving the ‘smoothness’ of the CNN kernels in the output space. The key insight here is that smoothing along a single, consistent direction (unidirectional) is more effective than trying to smooth in multiple directions simultaneously. This focused approach helps the MLP better approximate the underlying patterns, leading to faster learning and improved accuracy.
2. UOS-aware Random Fourier Features (UOS-RFF): This technique deals with how the input coordinates (which tell the MLP where to generate a weight) are encoded. Random Fourier Features (RFF) are a known method to help neural networks capture high-frequency information. UOS-RFF takes this a step further by adaptively adjusting the ‘frequency bandwidth’ of these input encodings. Essentially, for larger CNNs with more parameters in a given layer, the system reduces this bandwidth. This intelligent adjustment helps rebalance the frequency spectrum, ensuring that the MLP can effectively represent both smooth and detailed components.
How SBS Works in Practice
The SBS framework integrates these two techniques. A single MLP is trained to generate CNN layer weights. This MLP uses UOS to ensure the generated weights are smoother, and UOS-RFF to process the input coordinates, allowing it to better capture the necessary frequency components. The training process involves minimizing the difference between the generated and smoothed weights, as well as ensuring the reconstructed model behaves similarly to the original pre-trained model.
Also Read:
- Machine Unlearning: A Targeted Approach to Eradicating Bias in AI Vision Models
- Spectral NSR: Unifying Logic and Learning Through Graph Frequencies
Impressive Results Across Diverse Benchmarks
Extensive evaluations were conducted on various ResNet models using popular datasets like CIFAR-10, CIFAR-100, and ImageNet. The results demonstrate that SBS significantly outperforms existing state-of-the-art methods in terms of reconstruction accuracy while using fewer parameters. For instance, on CIFAR-10, SBS could reconstruct models with an accuracy drop of less than 1% using only 20% of the original model’s parameters. On the more complex ImageNet dataset, SBS achieved a 2x to 3x improvement in parameter efficiency, matching the performance of previous methods with only about 15% of the MLP parameters, and even surpassing methods that relied on ‘stronger teacher networks’ for supervision without needing any external guidance.
The research paper, SBS: Enhancing Parameter-Efficiency of Neural Representations for Neural Networks via Spectral Bias Suppression, provides a detailed analysis and theoretical foundation for these improvements, showing how MLPs behave as low-pass filters and how SBS effectively mitigates this limitation.
In conclusion, SBS represents a significant step forward in making neural network compression more efficient and effective. By intelligently addressing the spectral bias inherent in implicit neural representations, SBS enables the creation of more compact yet highly accurate neural networks, paving the way for broader deployment in resource-constrained environments.


