Papers
Topics
Authors
Recent
Search
2000 character limit reached

MixerSENet: A Lightweight Framework for Efficient Hyperspectral Image Classification

Published 1 Jun 2026 in cs.CV | (2606.01700v1)

Abstract: In this paper, a novel framework, MixerSENet, is introduced for hyperspectral image (HSI) classification, designed to address the challenges of computational efficiency and limited labeled data. The proposed model processes hyperspectral image patches while maintaining consistent size and resolution throughout the network, effectively decoupling the mixing of spatial and channel dimensions. Notably, MixerSENet is lightweight and computationally efficient, requiring fewer parameters compared to traditional models, making it suitable for resource-constrained environments. A squeeze and excitation block is incorporated into the model to refine feature extraction, enhancing the network's ability to capture more informative features. Experimental results on two benchmark datasets demonstrate that MixerSENet achieves superior performance, reaching an overall accuracy (OA) of 82.47% on Houston13 dataset and 96.70% on the Qingyun dataset, outperforming state-of-the-art methods including 3D-CNN, HybridKAN, HSIFormer, SimPoolFormer, and MorphMamba. Furthermore, a detailed analysis of computational efficiency shows that MixerSENet achieves a favorable balance between accuracy and efficiency, with only 53,146 parameters and an low inference time, confirming its practicality for real-world applications. At publication, source code will be publicly available at https://github.com/mqalkhatib/MixerSENet.

Summary

  • The paper introduces MixerSENet, which integrates spatial-spectral mixing with SE attention for efficient hyperspectral image classification.
  • Its methodology employs PCA-based dimensionality reduction, patch-based processing, and depthwise separable convolutions to reduce computational overhead.
  • Empirical results on Houston13 and Qingyun datasets demonstrate superior accuracy and robustness, especially with minimal training data.

MixerSENet: Lightweight and Efficient Hyperspectral Image Classification

Introduction

The explosive growth in hyperspectral imaging (HSI) has created significant opportunities in remote sensing, land use mapping, and environmental monitoring. However, HSI's high spectral dimensionality imposes challenges on feature extraction, computational efficiency, and classification, especially in data-scarce settings. Conventional deep learning techniquesโ€”ranging from 2D- and 3D-CNNs to hybrid architectures and, most recently, transformer-based vision networksโ€”have been deployed for HSI classification, but each presents trade-offs between accuracy, resource demands, and robustness. The "MixerSENet: A Lightweight Framework for Efficient Hyperspectral Image Classification" (2606.01700) proposes a model designed to address these simultaneous challenges by integrating spatial-spectral mixing with efficient attention, presenting a compelling route for practical HSI deployment.

Architectural Overview

MixerSENet is a patch-based, fully convolutional network leveraging both depthwise separable convolutions and a squeeze-and-excitation (SE) block to disentangle and adaptively enhance spatial and spectral features. The architecture takes HSI patches, applies PCA-based dimensionality reduction, and organizes the reduced tensors into patches that are processed consistently in terms of size and resolution throughout the pipeline. The workflow comprises:

  • Dimensionality reduction: PCA is employed to compress redundant spectral channels, yielding lower-dimensional input while retaining discriminative power.
  • Spatial-spectral separation and mixing: Channel features are extracted using point-wise convolutions while spatial features are independently captured at multiple scales (3ร—3, 5ร—5, and 7ร—7) via depthwise separable convolutions. This decoupling of operations decimates computational complexity and parameter counts.
  • Iterative spatial-spectral feature mixing: Multiple repetitions of spatial and channel mixing allow hierarchical learning at increasing levels of abstraction.
  • Squeeze-and-Excitation (SE) block: Global context is aggregated via global average pooling, and channel attention is computed through a two-layer MLP with excitation and sigmoid gating, recalibrating feature responses.
  • Classification: The aggregated tensor is projected to class logits using a softmax layer. Figure 1

    Figure 1: Architecture of the proposed Model.

This architecture design enables MixerSENet to maximize accuracy with minimal parameter and operational overhead, enhancing its suitability for deployment in resource-constrained or embedded systems.

Depthwise Separable Convolutions

A significant contributor to MixerSENetโ€™s efficiency is the adoption of depthwise separable convolutions, wherein spatial convolutions are performed on each channel independently, eschewing the standard cross-channel kernel mixing of classic convolutions. This approach results in drastic reductions in parameter count and MACs, allowing for extensive model stacking without excessive computational burden. It especially benefits HSI, where channel redundancy is high and spatial structures may vary per spectral band. Figure 2

Figure 2: Depthwise Separable Convolution: Input channels are separated, and each is convolved with a spatial filter. The split channels are then concatenated.

Squeeze-and-Excitation Feature Calibration

The SE block adaptively modulates each channelโ€™s significance, enabling the network to focus on discriminative spectral characteristics and suppress less useful, highly correlated, or noisy bandsโ€”a crucial capability given the high spectral redundancy in HSI. The combination of global context aggregation and learned channel scaling aligns seamlessly with the demands of robust HSI feature extraction.

Empirical Evaluation and Ablation Studies

MixerSENet is evaluated on two canonical HSI benchmarks: Houston13 and QUH-Qingyun. Experiments adopt competition-standard train/val/test splits and rigorous controls (batch size, optimizer, repeated trials with mean/std reporting). Results indicate:

  • Houston13: OA = 82.47% ยฑ 0.25, outperforming 3D-CNN (80.13%), HybridKAN (75.27%), HSIFormer (77.38%), SimPoolFormer (77.82%), MorphMamba (76.04%), and even its own ablated MixerNet variant (81.23%). Notably, the SE block delivers meaningful lift over the Mixer-only baseline.
  • Qingyun: OA = 96.70% ยฑ 0.21, AA = 95.46%, Kappa = 95.64, marking improvements over baseline convolutional, transformer, and hybrid models across all metrics.

The model also demonstrates robustness when trained on extremely limited data, achieving competitive OA (94.10%) at only 1% training coverageโ€”surpassing all baselines at every tested ratio. Figure 3

Figure 3: RGB Composites: (a) Houston13; (b) QUH-Qingyun.

Figure 4

Figure 4: Classification maps of Houston13 Dataset revealing Model, SE block, and baseline comparisons.

Figure 5

Figure 5: Classification maps of Qingyun Dataset for different methods, with MixerSENet yielding visually superior contiguity and class separation.

Figure 6

Figure 6: Classification accuracy of Qingyun dataset at different percentages of training data (left) OA (center) AA and (right) Kappa index.

In terms of computational metrics, MixerSENet achieves:

  • Parameter count: 53,146
  • FLOPs: 7.894 ร— 106
  • MACs: 3.890 ร— 106
  • Inference time: 2:32 minutes (RTX 2080, 8GB VRAM)

These figures are markedly lower than contemporary transformer-based models (e.g., HSIFormer, SimPoolFormer), which have parameter footprints and inference durations an order-of-magnitude higher, despite lower or comparable accuracy. MixerSENet remains on par in time and efficiency with its non-attention MixerNet baseline while producing superior classification.

Implications and Future Prospects

MixerSENetโ€™s combination of depthwise separable convolutions and SE attention demonstrates that lightweight, non-transformer architectures can deliver competitive, often superior, performance for HSI classification under real-world constraints. This challenges the prevailing trend toward ever-larger transformer-based models by establishing that carefully crafted convolutional architecturesโ€”augmented with attention and efficient mixingโ€”may be preferable for HSI, especially where inference resources and training labels are scarce.

Key implications include:

  • Resource-aware HSI deployment: MixerSENetโ€™s high accuracy and efficiency suit embedded, edge, and on-board satellite processing scenarios, facilitating low-latency, high-throughput analytics.
  • Label-efficient learning: Robustness under training scarcity indicates intrinsic regularization and generalization capacity, further bridging the gap between deep learning and the limited-annotation realities of most remote sensing tasks.
  • Architectural extensibility: While the SE block partially mitigates channel redundancy, further exploration into lightweight spectral mixing and contextually adaptive attention may yield additional gains; hybridization with transformer-derived mechanisms in a parameter-efficient way is a plausible next step.

Conclusion

MixerSENet redefines efficiency-accuracy trade-offs in HSI classification, demonstrating that explicit spatial-spectral separation, depthwise convolutions, and targeted channel attention suffice for state-of-the-art results across benchmarks. The modelโ€™s suitability for deployment and empirical robustness position it as a reference point for future lightweight and scalable architectures in remote sensing. Subsequent research directions may involve investigating alternative spectral mixing, further reducing overfitting at deeper model scales, and extending the paradigm to broader classes of multichannel spatial data.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.