Pith. sign in

REVIEW 3 major objections 6 minor 65 references

MambaHSI: Spatial-Spectral Mamba for Hyperspectral Image Classification

T0 review · 3 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read MambaHSI claims to be the first image-level, Mamba-based hyperspectral classifier, reaching state-of-the-art accuracy on four benchmarks with linear computational complexity.

desk verdict Useful empirical Mamba-for-HSI paper; the spatial long-range claim is untested because of a causal raster scan with no positional encoding, and the Mamba baselines are missing—still worth reviewing after experiments. read the letter →

arxiv 2501.04944 v1 pith:DFAEO3DJ submitted 2025-01-09 cs.CV

classification cs.CV
keywords hyperspectralimageclassificationstatespacemodelsMambaspatial-spectralfusionimage-levellinearcomputationalcomplexitylong-rangedependencies
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes MambaHSI, a hyperspectral image classifier built entirely from state-space layers, and argues that this design can model long-range spatial and spectral dependencies while scaling linearly with the number of pixels. It claims this is the first image-level, Mamba-based HSI classification model, taking the whole image as input rather than patches, and reports that it outperforms the ML, GCN, CNN, and Transformer baselines on the Pavia University, Houston, HanChuan, and HongHu datasets. The motivating point is that patch-based Transformers pay quadratic attention cost and lose pixel-level detail, while CNNs cannot reach far enough spatially. If the claim holds, whole-scene hyperspectral classification becomes feasible at pixel resolution with modest compute.

What carries the argument

The load-bearing object is the Mamba layer, a selective state-space sequence model that processes a one-dimensional sequence through a hidden state with input-dependent gating, in time linear in sequence length. MambaHSI applies it twice: the spatial Mamba block flattens the image into a raster scan of pixels to capture spatial context, and the spectral Mamba block partitions the spectral dimension into $G$ groups and treats the groups as a sequence to capture spectral continuity. The fusion module computes $H_{fus} = H_i + w_{spa}H_{spa}^o + w_{spe}H_{spe}^o$ with learned scalar weights $w_{spa}$ and $w_{spe}$, and residual connections are added throughout. The whole encoder is built only from these blocks, which is what makes the claimed linear complexity and end-to-end whole-image training possible.

What would settle it

Train the spatial-only branch (or the full model) with two different fixed pixel orderings, for example normal raster order versus a random but fixed permutation of all pixels, and compare per-pixel accuracy on the same training and test splits. If accuracy does not change, the spatial branch is not actually using spatial adjacency; if accuracy collapses, the reported gains depend on the specific arbitrary ordering rather than on a learned spatial representation.

Watch

Extended reading notes

Core claim

The central claim is that a pure state-space (Mamba) backbone, with separate spatial and spectral branches and an adaptive fusion step, gives the best hyperspectral classification accuracy on four diverse benchmarks. The spatial branch flattens the entire image into a one-dimensional sequence of pixel embeddings and runs a Mamba layer over it; the spectral branch splits each pixel's spectrum into groups, orders the groups, and runs a Mamba layer across them; the fusion module learns two scalar weights to combine the branches. The paper reports that this arrangement surpasses all compared ML-, GCN-, CNN-, and Transformer-based methods on all four datasets, with a single forward pass over the whole image and computational complexity that scales linearly in pixel count.

Load-bearing premise

The model's spatial power rests on the assumption that reading the whole image as one flat line of pixels, in fixed raster order with no positional encoding and no scan-direction design, still lets the Mamba layer learn genuinely spatial long-range relationships.

Editorial extensions

If this is right

  • Whole-scene hyperspectral classification can be performed in a single forward pass with complexity $O(L)$ in the number of pixels, making very large images tractable.
  • Pixel-level tokens, rather than patches, improve classification accuracy; the paper shows that increasing patch size degrades performance on the Pavia University dataset.
  • Modeling the spectrum as an ordered sequence of groups helps classification; setting the group count to one, which removes spectral ordering, drops overall accuracy by roughly 5.6 points on Pavia University.
  • Adaptive fusion of spatial and spectral branches with learned scalar weights outperforms simple summation, especially on the HongHu dataset, where it adds about 5.5 points of overall accuracy.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper, a natural next test is whether the raster-scan ordering actually matters: a multi-directional or bidirectional scan variant might improve accuracy further, since the paper does not ablate the scan direction.
  • The learned fusion weights $w_{spa}$ and $w_{spe}$ are not reported; inspecting them per dataset could reveal whether the spatial branch dominates in every scene or whether the balance shifts with ground-object scale.
  • The same two-branch state-space design could transfer to other dense prediction tasks, such as multispectral land-cover mapping or semantic segmentation, where linear scaling with image size is a practical advantage.
  • A stronger control experiment would shuffle pixels with a fixed random permutation at training time; the paper does not run this test, so the attribution of gains to 'long-range spatial modeling' remains unverified.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper proposes MambaHSI, an image-level hyperspectral image classification architecture built entirely on state space models. Each pixel is embedded individually; a spatial Mamba block processes all pixels as a rasterized 1D sequence, a spectral Mamba block processes grouped spectral vectors, and a spatial-spectral fusion module combines the two branches with learned scalar weights. The authors claim that this is the first image-level SSM-based HSI classifier, that it models long-range interactions of the whole image at pixel level with linear complexity, and that it outperforms ML-, GCN-, CNN-, and Transformer-based baselines on Pavia University, Houston, HanChuan, and HongHu. The experimental section provides ten-run comparisons, ablations, hyperparameter studies, and a scaling experiment comparing Mamba with self-attention.

Significance. If the empirical results hold, the paper is a useful contribution: an image-level, linear-complexity backbone for HSI classification with public code and evaluation on four datasets. The complexity scaling experiment in Table VIII is a clean demonstration of linear versus quadratic behavior, and the ablation and hyperparameter studies are thorough. The significance is currently limited by the lack of validation of the spatial long-range mechanism, the absence of any Mamba-based baseline in the comparison, and the lack of statistical significance tests, so the 'next-generation backbone' claim is not yet established.

major comments (3)
  1. [Section IV-C, Eq. (7), and Section V-B] The spatial Mamba block flattens the entire 2D image into a raster-scan 1D sequence and applies a standard causal Mamba without positional encoding. Because the scan is causal, token t cannot see any later token, so no pixel receives information from its right or lower neighbors; without coordinate information, the 2D arrangement is only an arbitrary ordering. The paper's recurring claim that SpaMB models 'long-range interaction of the whole image at the pixel level' is therefore not established by the architecture. The reported gains could plausibly come from the spectral branch, the fusion module, or a global bag-of-pixels effect. Please provide a control experiment, for example randomizing the pixel permutation, using bidirectional or multi-directional scans, or replacing SpaMB with a non-spatial sequence model of the same capacity, and show that the spatial ordering specifically is responsible for the accuracy gain.
  2. [Section V-B, Tables I and V] No statistical significance tests are reported. On PaviaU, MambaHSI's OA is 95.74±0.90 versus 94.97±1.43 for CLOLN, a difference of 0.77 percentage points, which is within one standard deviation of both means. The claim that the model 'outperforms all ... and achieves SOTA on all datasets' is too strong for this dataset. Please report paired tests (for example, McNemar's test or pairwise comparisons across the ten trials) and adjust the wording accordingly, or justify that the differences are meaningful.
  3. [Section II.B and Section V.A comparison list] The related work cites several Mamba-based HSI classifiers, including SpectralMamba [57] and 3DSS-Mamba [58], but none of these are included in the experimental comparison. Because the paper's central contribution is a Mamba architecture for HSI, the absence of any Mamba baseline makes the 'superiority' claim incomplete. Please add at least one patch-level Mamba method evaluated under the same training/validation split, or explain with runtime and accuracy evidence why the image-level comparison omits them; in either case, the SOTA statement should be qualified to 'among the compared methods'.
minor comments (6)
  1. [Section III, Eq. (2)] The notation A and B is reused for both the continuous and discrete parameters; please disambiguate these symbols.
  2. [Section IV.D and other places] There are several grammatical slips, including 'we divide a spectral features into G group' and 'the semantic vector'; please correct these throughout.
  3. [Table VIII] The table header and row labels do not clearly indicate which row corresponds to the Mamba encoder block and which to the self-attention variant; please add explicit row labels.
  4. [Section V-F, Table IX] The 'w SSI' OA on PaviaU is 80.67±2.07, while the SpeMB row in Table V reports 78.34±4.00 for what appears to be the same configuration; if these are different configurations or different numbers of runs, please clarify in the text.
  5. [Section V-E, Fig. 11] The patch-size ablation plots show lines without error bars even though the text says multiple runs were performed; please add error bars or explain why they are omitted.
  6. [Table VI] There is a typo in the header, 'Paramters', which should be 'Parameters'.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the SOTA claim is supported by supervised training on public benchmarks and held-out test evaluation, not by a derivation that reduces to its inputs.

full rationale

MambaHSI is an empirical architecture paper. Its central claim (state-of-the-art accuracy on PaviaU, Houston, HanChuan, and HongHu) is supported by supervised training on labeled training pixels and evaluation on held-out test pixels (Eq. 10, Eq. 11, Tables I-IV), not by a derivation that reduces to its own inputs. The SpaMB formulation in Eq. 7 feeds a rasterized pixel sequence into a standard Mamba layer, but the accuracy result is not obtained by fitting the reported metric; the claim that this models long-range spatial interaction is an interpretation of the architecture, not a circular definition. The paper cites prior works by the same group (SSFCN [3] and FullyContNet [66]) as related work and as a comparison baseline, but neither citation is load-bearing: FullyContNet's numbers are independently reproduced in the comparison tables, and no parameter is fitted to the reported metric and renamed a prediction. No uniqueness theorem from the authors is invoked to force the design, and no known empirical pattern is merely renamed. The residual concern about the raster-scan spatial Mamba without positional encoding is a correctness or interpretability risk, not a circularity. Therefore no significant circularity is present.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central empirical result rests on standard supervised learning plus the Mamba black box. No new physical entities are introduced. The hand-chosen hyperparameters are the spectral group count G=4 and embedding dimension D=128, both tuned on PaviaU, and the encoder depth is left unspecified. The main hidden modeling assumption is that a raster-scan 1D ordering of pixels is sufficient for Mamba to capture 2D spatial dependencies.

free parameters (4)
  • Spectral group number G = 4
    Chosen via a hyperparameter sweep on PaviaU (Fig. 12a). The spectral Mamba block's sequence length is G, so this directly controls what spectral relations are modeled. G=1 degrades performance; larger values are stable but not better.
  • Embedding dimension D = 128
    Chosen via a hyperparameter sweep on PaviaU (Fig. 12b). Model capacity and FLOPs scale with D; performance peaks near 128 and declines at 512, attributed to overfitting with limited labeled samples.
  • Encoder depth (number of blocks) = not stated
    The paper never specifies how many encoder blocks are stacked. This affects the reported 0.412M parameters and 39.18 GFLOPs and is needed for exact reproduction.
  • Fusion weights w_spa and w_spe = learned during training, values not reported
    Eq. (9) combines spatial and spectral branch outputs using two scalars that are randomly initialized and updated by backpropagation. The final fusion behavior is data-dependent.
assumptions (4)
  • standard math The ZOH discretization of SSMs (Eq. 2) and the selective Mamba layer from Gu and Dao [24] work as described.
    The paper borrows the Mamba block as a black box and does not re-derive it; this is accepted background from the cited literature.
  • domain assumption Spectral bands of hyperspectral images are ordered and approximately contiguous, so treating the spectrum as a sequence is meaningful.
    Stated in Section IV-A: 'hyperspectral images are characterized by approximately contiguous spectral information.' This motivates the spectral Mamba block.
  • ad hoc to paper Flattening the whole 2D image into a raster-scan 1D sequence preserves enough spatial structure for Mamba to learn long-range pixel dependencies.
    Introduced in Section IV-C, Eq. (7). No positional encoding, scan-direction strategy, or 2D inductive bias is discussed or tested.
  • domain assumption Thirty randomly chosen labeled pixels per class plus a separate ten-pixel validation set provide a fair estimate of generalization.
    Training protocol in Section V-A. This is standard in HSI literature but creates class-imbalance and scene-specific splits that may not generalize across sensors.

how reviews work

0 comments
Cite this review

Pith. "Pith review of MambaHSI: Spatial-Spectral Mamba for Hyperspectral Image Classification." pith.science (2026). https://pith.science/paper/DFAEO3DJ

@misc{pith2026250104944,
  author       = {Pith},
  title        = {Pith review of: MambaHSI: Spatial-Spectral Mamba for Hyperspectral Image Classification},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/DFAEO3DJ}},
  note         = {Machine review of arXiv:2501.04944}
}
read the original abstract

Transformer has been extensively explored for hyperspectral image (HSI) classification. However, transformer poses challenges in terms of speed and memory usage because of its quadratic computational complexity. Recently, the Mamba model has emerged as a promising approach, which has strong long-distance modeling capabilities while maintaining a linear computational complexity. However, representing the HSI is challenging for the Mamba due to the requirement for an integrated spatial and spectral understanding. To remedy these drawbacks, we propose a novel HSI classification model based on a Mamba model, named MambaHSI, which can simultaneously model long-range interaction of the whole image and integrate spatial and spectral information in an adaptive manner. Specifically, we design a spatial Mamba block (SpaMB) to model the long-range interaction of the whole image at the pixel-level. Then, we propose a spectral Mamba block (SpeMB) to split the spectral vector into multiple groups, mine the relations across different spectral groups, and extract spectral features. Finally, we propose a spatial-spectral fusion module (SSFM) to adaptively integrate spatial and spectral features of a HSI. To our best knowledge, this is the first image-level HSI classification model based on the Mamba. We conduct extensive experiments on four diverse HSI datasets. The results demonstrate the effectiveness and superiority of the proposed model for HSI classification. This reveals the great potential of Mamba to be the next-generation backbone for HSI models. Codes are available at https://github.com/li-yapeng/MambaHSI .

Figures

Figures reproduced from arXiv: 2501.04944 by the authors.

Figure 1
Figure 1. Motivation illustration. The local characteristics of CNNs and the quadratic complexity of Transformers limit their ability to achieve fine-grained global modeling. In contrast, the proposed MambaHSI model can achieve pixel-level fine-grained spatial feature modeling with linear complexity. By incorporating spectral sequence information, MambaHSI enhances the extraction of spectral features. observations of the Eart… view at source ↗
Figure 2
Figure 2. Overview of the proposed MambaHSI framework. The whole hyperspectral image is fed into the embedding layer to obtain pixel￾level embeddings. Then these embeddings are taken as the inputs of the encoder to model the long-range dependencies and capture the discriminative features. Finally, the segmentation head classifies the features extracted by the encoder to obtain the final prediction. The encoder block contains … view at source ↗
Figure 3
Figure 3. Pavia Univeristy data set. (a) False color image. (b) Ground truth. (c) Category and sample settings. and implementation details. Then we comprehensively com￾pare with state-of-the-arts methods both qualitatively and quantitatively. Finally, we conduct a detailed ablation study to analyze the effect of the proposed modules. A. Experimental Setup Datasets. To more comprehensively evaluate the effectiveness of the pro… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Houston data set. (a) False color image. (b) Ground truth. (c) Category and sample settings. Nano-Hyperspec imaging sensor equipped on a Leica Aibot X6 UAV V1 platform. The study area is a rural-urban fringe zone with buildings, water, and cultivated land, which contai…
Figure 6
Figure 6. Figure 6: HongHu data set. (a) False color image. (b) Ground truth. (c) Category and sample settings. • GSC-ViT[TGRS2024] [12]: The model adopts a groupwise separable convolution ViT to capture local and global spectral-spatial information for HSI classification. Implement Detai…
Figure 7
Figure 7. Figure 7: Qualitative visualization of the classification map for Pavia University dataset. (a) Ground-truth map. (b) SVM. (c) RF. (d) DMSGer. (e) GiGCN. (f) FullyContNet. (g) CLOLN. (h) Spectralformer. (i) GSC-ViT. (j) The proposed MambaHSI. The meaning of colors refers to [PI…
Figure 8
Figure 8. Figure 8: Qualitative visualization of the classification map for Houston dataset. (a) Ground-truth map. (b) SVM. (c) RF. (d) DMSGer. (e) GiGCN. (f) FullyContNet. (g) CLOLN. (h) Spectralformer. (i) GSC-ViT. (j) The proposed MambaHSI. The meaning of colors refers to [PITH_FULL_I…
Figure 9
Figure 9. Figure 9: Qualitative visualization of the classification map for HanChuan dataset. (a) Ground-truth map. (b) SVM. (c) RF. (d) DMSGer. (e) GiGCN. (f) FullyContNet. (g) CLOLN. (h) Spectralformer. (i) GSC-ViT. (j) The proposed MambaHSI. The meaning of colors refers to [PITH_FULL_…
Figure 10
Figure 10. Figure 10: Qualitative visualization of the classification map for HongHu dataset. (a) Ground-truth map. (b) SVM. (c) RF. (d) DMSGer. (e) GiGCN. (f) FullyContNet. (g) CLOLN. (h) Spectralformer. (i) GSC-ViT. (j) The proposed MambaHSI. The meaning of colors refers to [PITH_FULL_I…
Figure 11
Figure 11. Figure 11: Effect of replacing pixel-wise spatial features with patch features of different sizes on the Pavia University dataset. icantly slower than image-level methods when testing on full images. Additionally, our method achieved the fastest testing and training times among …
Figure 12
Figure 12. Figure 12: Hyper-parameter analysis on the Pavia University dataset. (a) the effect of group number G, (b) the effect of embedding dimension D. The figure reports the mean and standard deviation of the results from five runs. stable. From the results in [PITH_FULL_IMAGE:figures…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

65 extracted references · 48 canonical work pages

  1. [57]

    Spectralmamba: Effi- cient mamba for hyperspectral image classification,

    J. Yao, D. Hong, C. Li, and J. Chanussot, “Spectralmamba: Effi- cient mamba for hyperspectral image classification,” arXiv preprint arXiv:2404.08489, 2024

  2. [58]

    3DSS-Mamba: 3D-Spectral-Spatial Mamba for Hyperspectral Image Classification

    Y . He, B. Tu, B. Liu, J. Li, and A. Plaza, “3dss-mamba: 3d-spectral- spatial mamba for hyperspectral image classification,” arXiv preprint arXiv:2405.12487, 2024

  3. [1]

    A spectral-spatial-dependent global learning framework for insufficient and imbalanced hyperspectral image classification,

    Q. Zhu, W. Deng, Z. Zheng, Y . Zhong, Q. Guan, W. Lin, L. Zhang, and D. Li, “A spectral-spatial-dependent global learning framework for insufficient and imbalanced hyperspectral image classification,” IEEE Transactions on Cybernetics , vol. 52, no. 11, pp. 11 709–11 723, 2022

  4. [2]

    Hyperspectral remote sensing data analysis and future challenges,

    J. M. Bioucas-Dias, A. Plaza, G. Camps-Valls, P. Scheunders, N. Nasrabadi, and J. Chanussot, “Hyperspectral remote sensing data analysis and future challenges,” IEEE Geoscience and Remote Sensing Magazine, vol. 1, no. 2, pp. 6–36, 2013

  5. [3]

    Beyond the patchwise classification: Spectral-spatial fully convolutional networks for hyperspectral image classification,

    Y . Xu, B. Du, and L. Zhang, “Beyond the patchwise classification: Spectral-spatial fully convolutional networks for hyperspectral image classification,” IEEE Transactions on Big Data , vol. 6, no. 3, pp. 492– 506, 2020

  6. [4]

    Beyond the sparsity-based target detector: A hybrid sparsity and statistics-based detector for hyperspectral images,

    B. Du, Y . Zhang, L. Zhang, and D. Tao, “Beyond the sparsity-based target detector: A hybrid sparsity and statistics-based detector for hyperspectral images,” IEEE Transactions on Image Processing, vol. 25, no. 11, pp. 5345–5357, 2016

  7. [5]

    Hyperloopnet: Hyperspectral image clas- sification using multiscale self-looping convolutional networks,

    S. Pande and B. Banerjee, “Hyperloopnet: Hyperspectral image clas- sification using multiscale self-looping convolutional networks,” ISPRS Journal of Photogrammetry and Remote Sensing, vol. 183, pp. 422–438, 2022

  8. [6]

    Deep learning classifiers for hyperspectral imaging: A review,

    M. Paoletti, J. Haut, J. Plaza, and A. Plaza, “Deep learning classifiers for hyperspectral imaging: A review,”ISPRS Journal of Photogrammetry and Remote Sensing , vol. 158, pp. 279–317, 2019

Show all 65 references
  1. [7]

    A novel semisuper- vised active-learning algorithm for hyperspectral image classification,

    Z. Wang, B. Du, L. Zhang, L. Zhang, and X. Jia, “A novel semisuper- vised active-learning algorithm for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 55, no. 6, pp. 3071–3083, 2017

  2. [8]

    Do we need learnable classifiers? a hyperspectral image classification algorithm based on attention-enhanced resblock-in-resblock and etf classifier,

    C. Fu, B. Du, and L. Zhang, “Do we need learnable classifiers? a hyperspectral image classification algorithm based on attention-enhanced resblock-in-resblock and etf classifier,” IEEE Transactions on Geo- science and Remote Sensing , 2024

  3. [9]

    Classification of hyperspectral remote sensing images with support vector machines,

    F. Melgani and L. Bruzzone, “Classification of hyperspectral remote sensing images with support vector machines,” IEEE Transactions on geoscience and remote sensing , vol. 42, no. 8, pp. 1778–1790, 2004

  4. [10]

    Investigation of the random forest framework for classification of hyperspectral data,

    J. Ham, Y . Chen, M. M. Crawford, and J. Ghosh, “Investigation of the random forest framework for classification of hyperspectral data,” IEEE Transactions on Geoscience and Remote Sensing , vol. 43, no. 3, pp. 492–501, 2005

  5. [11]

    Graph convolutional networks for hyperspectral image classification,

    D. Hong, L. Gao, J. Yao, B. Zhang, A. Plaza, and J. Chanussot, “Graph convolutional networks for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 59, no. 7, pp. 5966–5978, 2020

  6. [12]

    Hyperspectral image classification using groupwise separable convolutional vision transformer network,

    Z. Zhao, X. Xu, S. Li, and A. Plaza, “Hyperspectral image classification using groupwise separable convolutional vision transformer network,” IEEE Transactions on Geoscience and Remote Sensing , 2024

  7. [13]

    Semi- supervised multiscale dynamic graph convolution network for hyper- spectral image classification,

    Y . Yang, X. Tang, X. Zhang, J. Ma, F. Liu, X. Jia, and L. Jiao, “Semi- supervised multiscale dynamic graph convolution network for hyper- spectral image classification,” IEEE Transactions on Neural Networks and Learning Systems , vol. 35, no. 5, pp. 6806–6820, 2024

  8. [14]

    Resc-net: Hyperspectral image classifi- cation based on attention-enhanced residual module and spatial-channel attention,

    C. Fu, B. Du, and L. Zhang, “Resc-net: Hyperspectral image classifi- cation based on attention-enhanced residual module and spatial-channel attention,” IEEE Transactions on Geoscience and Remote Sensing, 2024

  9. [15]

    Channel-layer- oriented lightweight spectral-spatial network for hyperspectral image classification,

    C. Li, B. Rasti, X. Tang, P. Duan, J. Li, and Y . Peng, “Channel-layer- oriented lightweight spectral-spatial network for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , 2024

  10. [16]

    Spectralformer: Rethinking hyperspectral image classification with transformers,

    D. Hong, Z. Han, J. Yao, L. Gao, B. Zhang, A. Plaza, and J. Chanus- sot, “Spectralformer: Rethinking hyperspectral image classification with transformers,” IEEE Transactions on Geoscience and Remote Sensing , vol. 60, pp. 1–15, 2021

  11. [17]

    Vm-unet: Vision mamba unet for medical image segmentation,

    J. Ruan and S. Xiang, “Vm-unet: Vision mamba unet for medical image segmentation,” arXiv preprint arXiv:2402.02491 , 2024

  12. [18]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. u. Kaiser, and I. Polosukhin, “Attention is all you need,” in Advances in Neural Information Processing Systems , vol. 30, 2017

  13. [19]

    Vision mamba: Efficient visual representation learning with bidirectional state space model,

    L. Zhu, B. Liao, Q. Zhang, X. Wang, W. Liu, and X. Wang, “Vision mamba: Efficient visual representation learning with bidirectional state space model,” arXiv preprint arXiv:2401.09417 , 2024

  14. [20]

    Gu, Modeling Sequences with Structured State Spaces

    A. Gu, Modeling Sequences with Structured State Spaces . Stanford University, 2023

  15. [21]

    Combining recurrent, convolutional, and continuous-time models with linear state space layers,

    A. Gu, I. Johnson, K. Goel, K. Saab, T. Dao, A. Rudra, and C. R ´e, “Combining recurrent, convolutional, and continuous-time models with linear state space layers,” Advances in neural information processing systems, vol. 34, pp. 572–585, 2021

  16. [22]

    Efficiently modeling long sequences with structured state spaces,

    A. Gu, K. Goel, and C. Re, “Efficiently modeling long sequences with structured state spaces,” in International Conference on Learning Representations, 2022

  17. [23]

    It’s raw! audio generation with state-space models,

    K. Goel, A. Gu, C. Donahue, and C. R ´e, “It’s raw! audio generation with state-space models,” in International Conference on Machine Learning , 2022, pp. 7616–7633

  18. [24]

    Mamba: Linear-time sequence modeling with selective state spaces,

    A. Gu and T. Dao, “Mamba: Linear-time sequence modeling with selective state spaces,” arXiv preprint arXiv:2312.00752 , 2023

  19. [25]

    U-mamba: Enhancing long-range dependency for biomedical image segmentation,

    J. Ma, F. Li, and B. Wang, “U-mamba: Enhancing long-range dependency for biomedical image segmentation,” arXiv preprint arXiv:2401.04722, 2024

  20. [26]

    A survey on vision mamba: Models, applications and challenges,

    R. Xu, S. Yang, Y . Wang, B. Du, and H. Chen, “A survey on vision mamba: Models, applications and challenges,” arXiv preprint arXiv:2404.18861, 2024

  21. [27]

    Ssm meets video diffusion models: Efficient video generation with structured state spaces,

    Y . Oshima, S. Taniguchi, M. Suzuki, and Y . Matsuo, “Ssm meets video diffusion models: Efficient video generation with structured state spaces,” arXiv preprint arXiv:2403.07711 , 2024. IEEE TRANSACTIONS ON GEOSCIENCE AND REMOTE SENSING 15

  22. [28]

    Rsmamba: Remote sensing image classification with state space model,

    K. Chen, B. Chen, C. Liu, W. Li, Z. Zou, and Z. Shi, “Rsmamba: Remote sensing image classification with state space model,” arXiv preprint arXiv:2403.19654, 2024

  23. [29]

    Pointmamba: A simple state space model for point cloud analysis,

    D. Liang, X. Zhou, X. Wang, X. Zhu, W. Xu, Z. Zou, X. Ye, and X. Bai, “Pointmamba: A simple state space model for point cloud analysis,” arXiv preprint arXiv:2402.10739 , 2024

  24. [30]

    Knn-based representation of superpixels for hyperspectral image classification,

    B. Tu, J. Wang, X. Kang, G. Zhang, X. Ou, and L. Guo, “Knn-based representation of superpixels for hyperspectral image classification,” IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, vol. 11, no. 11, pp. 4032–4047, 2018

  25. [31]

    Exploring the relationship between center and neighborhoods: Central vector oriented self-similarity network for hyperspectral image classification,

    M. Li, Y . Liu, G. Xue, Y . Huang, and G. Yang, “Exploring the relationship between center and neighborhoods: Central vector oriented self-similarity network for hyperspectral image classification,” IEEE Transactions on Circuits and Systems for Video Technology , vol. 33, no. ...

  26. [32]

    Spectral–spatial feature tokenization transformer for hyperspectral image classification,

    L. Sun, G. Zhao, Y . Zheng, and Z. Wu, “Spectral–spatial feature tokenization transformer for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 60, pp. 1–14, 2022

  27. [33]

    Hyperspectral image classification using group-aware hierarchical transformer,

    S. Mei, C. Song, M. Ma, and F. Xu, “Hyperspectral image classification using group-aware hierarchical transformer,” IEEE Transactions on Geoscience and Remote Sensing , vol. 60, pp. 1–14, 2022

  28. [34]

    Spectral–spatial clas- sification of hyperspectral images with a superpixel-based discriminative sparse model,

    L. Fang, S. Li, X. Kang, and J. A. Benediktsson, “Spectral–spatial clas- sification of hyperspectral images with a superpixel-based discriminative sparse model,” IEEE Transactions on Geoscience and Remote Sensing , vol. 53, no. 8, pp. 4186–4201, 2015

  29. [35]

    Classification of hyperspectral data from urban areas based on extended morpholog- ical profiles,

    J. A. Benediktsson, J. A. Palmason, and J. R. Sveinsson, “Classification of hyperspectral data from urban areas based on extended morpholog- ical profiles,” IEEE Transactions on Geoscience and Remote Sensing , vol. 43, no. 3, pp. 480–491, 2005

  30. [36]

    Representa- tive multiple kernel learning for classification in hyperspectral imagery,

    Y . Gu, C. Wang, D. You, Y . Zhang, S. Wang, and Y . Zhang, “Representa- tive multiple kernel learning for classification in hyperspectral imagery,” IEEE Transactions on Geoscience and Remote Sensing , vol. 50, no. 7, pp. 2852–2865, 2012

  31. [37]

    Representation learning: A review and new perspectives,

    Y . Bengio, A. Courville, and P. Vincent, “Representation learning: A review and new perspectives,” IEEE Trans. Pattern Anal. Mach. Intell. , vol. 35, no. 8, p. 1798–1828, aug 2013

  32. [38]

    Spectral– spatial graph convolutional networks for semisupervised hyperspectral image classification,

    A. Qin, Z. Shang, J. Tian, Y . Wang, T. Zhang, and Y . Y . Tang, “Spectral– spatial graph convolutional networks for semisupervised hyperspectral image classification,” IEEE Geoscience and Remote Sensing Letters , vol. 16, no. 2, pp. 241–245, 2018

  33. [39]

    Hyperspectral image classification with context-aware dynamic graph convolutional network,

    S. Wan, C. Gong, P. Zhong, S. Pan, G. Li, and J. Yang, “Hyperspectral image classification with context-aware dynamic graph convolutional network,” IEEE Transactions on Geoscience and Remote Sensing , vol. 59, no. 1, pp. 597–612, 2021

  34. [40]

    Graph-in-graph convolutional network for hyperspectral image classification,

    S. Jia, S. Jiang, S. Zhang, M. Xu, and X. Jia, “Graph-in-graph convolutional network for hyperspectral image classification,” IEEE Transactions on Neural Networks and Learning Systems , vol. 35, no. 1, pp. 1157–1171, 2024

  35. [41]

    Hyperspectral image clas- sification—traditional to deep models: A survey for future prospects,

    M. Ahmad, S. Shabbir, S. K. Roy, D. Hong, X. Wu, J. Yao, A. M. Khan, M. Mazzara, S. Distefano, and J. Chanussot, “Hyperspectral image clas- sification—traditional to deep models: A survey for future prospects,” IEEE Journal of Selected Topics in Applied Earth Observations and ...

  36. [43]

    Deep convolutional neural networks for hyperspectral image classification,

    W. Hu, Y . Huang, L. Wei, F. Zhang, and H. Li, “Deep convolutional neural networks for hyperspectral image classification,” Journal of Sensors, vol. 2015, pp. 1–12, 2015

  37. [44]

    Hierarchical multi-scale convolutional neural networks for hyperspectral image classification,

    S. Li, X. Zhu, and J. Bao, “Hierarchical multi-scale convolutional neural networks for hyperspectral image classification,” Sensors, vol. 19, no. 7, p. 1714, 2019

  38. [45]

    A fast and compact 3-d cnn for hyperspectral image classification,

    M. Ahmad, A. M. Khan, M. Mazzara, S. Distefano, M. Ali, and M. S. Sarfraz, “A fast and compact 3-d cnn for hyperspectral image classification,” IEEE Geoscience and Remote Sensing Letters , vol. 19, pp. 1–5, 2020

  39. [46]

    Fully contextual network for hyper- spectral scene parsing,

    D. Wang, B. Du, and L. Zhang, “Fully contextual network for hyper- spectral scene parsing,” IEEE Transactions on Geoscience and Remote Sensing, vol. 60, pp. 1–16, 2021

  40. [47]

    Spatial–spectral transformer with cross-attention for hyperspectral image classification,

    Y . Peng, Y . Zhang, B. Tu, Q. Li, and W. Li, “Spatial–spectral transformer with cross-attention for hyperspectral image classification,” IEEE Trans- actions on Geoscience and Remote Sensing , vol. 60, pp. 1–15, 2022

  41. [48]

    From center to surrounding: An interactive learning framework for hyperspectral image classification,

    J. Yang, B. Du, and L. Zhang, “From center to surrounding: An interactive learning framework for hyperspectral image classification,” ISPRS Journal of Photogrammetry and Remote Sensing , vol. 197, pp. 145–166, 2023

  42. [49]

    Local transformer with spatial partition restore for hyperspectral image classification,

    Z. Xue, Q. Xu, and M. Zhang, “Local transformer with spatial partition restore for hyperspectral image classification,” IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing , vol. 15, pp. 4307–4325, 2022

  43. [50]

    Spformer: Self- pooling transformer for few-shot hyperspectral image classification,

    Z. Li, Z. Xue, Q. Xu, L. Zhang, T. Zhu, and M. Zhang, “Spformer: Self- pooling transformer for few-shot hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 62, pp. 1–19, 2024

  44. [51]

    Simplified state space layers for sequence modeling,

    J. T. Smith, A. Warrington, and S. Linderman, “Simplified state space layers for sequence modeling,” in The Eleventh International Conference on Learning Representations , 2023

  45. [52]

    Hungry hungry hippos: Towards language modeling with state space models,

    D. Y . Fu, T. Dao, K. K. Saab, A. W. Thomas, A. Rudra, and C. Re, “Hungry hungry hippos: Towards language modeling with state space models,” in The Eleventh International Conference on Learning Repre- sentations, 2023

  46. [53]

    Long range language modeling via gated state spaces,

    H. Mehta, A. Gupta, A. Cutkosky, and B. Neyshabur, “Long range language modeling via gated state spaces,” in The Eleventh International Conference on Learning Representations , 2023

  47. [54]

    S4ND: Modeling images and videos as multidimensional signals with state spaces,

    E. Nguyen, K. Goel, A. Gu, G. Downs, P. Shah, T. Dao, S. Baccus, and C. R ´e, “S4ND: Modeling images and videos as multidimensional signals with state spaces,” in Advances in Neural Information Processing Systems, A. H. Oh, A. Agarwal, D. Belgrave, and K. Cho, Eds., 2022

  48. [55]

    Efficient movie scene detection using state-space transformers,

    M. M. Islam, M. Hasan, K. S. Athrey, T. Braskich, and G. Bertasius, “Efficient movie scene detection using state-space transformers,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 18 749–18 758

  49. [56]

    Selective structured state-spaces for long-form video understanding,

    J. Wang, W. Zhu, P. Wang, X. Yu, L. Liu, M. Omar, and R. Hamid, “Selective structured state-spaces for long-form video understanding,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 6387–6397

  50. [59]

    Spectral-spatial mamba for hyperspec- tral image classification,

    L. Huang, Y . Chen, and X. He, “Spectral-spatial mamba for hyperspec- tral image classification,” arXiv preprint arXiv:2404.18401 , 2024

  51. [60]

    Dualmamba: A lightweight spectral-spatial mamba-convolution network for hyperspec- tral image classification,

    J. Sheng, J. Zhou, J. Wang, P. Ye, and J. Fan, “Dualmamba: A lightweight spectral-spatial mamba-convolution network for hyperspec- tral image classification,” arXiv preprint arXiv:2406.07050 , 2024

  52. [61]

    Non-local neural net- works,

    X. Wang, R. Girshick, A. Gupta, and K. He, “Non-local neural net- works,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2018, pp. 7794–7803

  53. [62]

    Efficient deep learning of nonlocal features for hyperspectral image classification,

    Y . Shen, S. Zhu, C. Chen, Q. Du, L. Xiao, J. Chen, and D. Pan, “Efficient deep learning of nonlocal features for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 59, no. 7, pp. 6029–6043, 2021

  54. [63]

    Global–local 3-d convolutional transformer network for hyperspectral image classification,

    W. Qi, C. Huang, Y . Wang, X. Zhang, W. Sun, and L. Zhang, “Global–local 3-d convolutional transformer network for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing, vol. 61, pp. 1–20, 2023

  55. [64]

    Large kernel spectral and spatial attention networks for hyperspectral image classification,

    G. Sun, Z. Pan, A. Zhang, X. Jia, J. Ren, H. Fu, and K. Yan, “Large kernel spectral and spatial attention networks for hyperspectral image classification,” IEEE Transactions on Geoscience and Remote Sensing , vol. 61, pp. 1–15, 2023

  56. [65]

    Zhong, X

    Y . Zhong, X. Hu, C. Luo, X. Wang, J. Zhao, and L. Zhang, “Whu-hi: Uav-borne hyperspectral with high spatial resolution (h2) benchmark datasets and classifier for precise crop identification based on deep convolutional neural network with crf,” Remote Sensing of Environment, v...

  57. [66]

    Fully contextual network for hyper- spectral scene parsing,

    D. Wang, B. Du, and L. Zhang, “Fully contextual network for hyper- spectral scene parsing,” IEEE Transactions on Geoscience and Remote Sensing, vol. 60, pp. 1–16, 2022

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.