README.md

March 4, 2025 Β· View on GitHub

Spatial-Mamba: Effective Visual State Space Models via Structure-Aware State Fusion

1The Hong Kong Polytechnic University, 2OPPO Research Institute,
3Harvard Medical School, 4Xi'an Jiaotong University
(*) equal contribution, (†) corresponding author

[πŸ“ arXiv paper]


🚩Accepted by ICLR2025

Abstaract

Selective state space models (SSMs), such as Mamba, highly excel at capturing long-range dependencies in 1D sequential data, while their applications to 2D vision tasks still face challenges. Current visual SSMs often convert images into 1D sequences and employ various scanning patterns to incorporate local spatial dependencies. However, these methods are limited in effectively capturing the complex image spatial structures and the increased computational cost caused by the lengthened scanning paths. To address these limitations, we propose Spatial-Mamba, a novel approach that establishes neighborhood connectivity directly in the state space. Instead of relying solely on sequential state transitions, we introduce a structure-aware state fusion equation, which leverages dilated convolutions to capture image spatial structural dependencies, significantly enhancing the flow of visual contextual information. Spatial-Mamba proceeds in three stages: initial state computation in a unidirectional scan, spatial context acquisition through structure-aware state fusion, and final state computation using the observation equation. Our theoretical analysis shows that Spatial-Mamba unifies the original Mamba and linear attention under the same matrix multiplication framework, providing a deeper understanding of our method. Experimental results demonstrate that Spatial-Mamba, even with a single scan, attains or surpasses the state-of-the-art SSM-based models in image classification, detection and segmentation.

🎬 Overview

main

sasf

🎯 Main Results

classification

detection

segmentation

πŸ› οΈ Getting Started

  1. Clone repo

    git clone https://github.com/EdwardChasel/Spatial-Mamba.git
    cd Spatial-Mamba
    
  2. Create and activate a new conda environment

    conda create -n Spatial-Mamba python=3.10
    conda activate Spatial-Mamba
    
  3. Install dependent packages

    pip install --upgrade pip
    pip install -r requirements.txt
    cd kernels/selective_scan && pip install .
    cd kernels/dwconv2d && python3 setup.py install --user
    
  4. Dependencies for detection and segmentation (optional)

    pip install mmengine==0.10.1 mmcv==2.1.0 opencv-python-headless ftfy regex
    pip install mmdet==3.3.0 mmsegmentation==1.2.2 mmpretrain==1.2.0
    

✨ Pre-trained Models

ImageNet-1k Image Classification
namepretrainresolutionacc@1#paramFLOPsdownload
Spatial-Mamba-TImageNet-1K224x22483.527M4.5Gckpt | config
Spatial-Mamba-SImageNet-1K224x22484.643M7.1Gckpt | config
Spatial-Mamba-BImageNet-1K224x22485.396M15.8Gckpt | config
COCO Object Detection and Instance Segmentation
backbonemethodschedulemAP (box/mask)#paramFLOPsdownload
Spatial-Mamba-TMask R-CNN1x47.6 / 42.946M261Gckpt | config
Spatial-Mamba-SMask R-CNN1x49.2 / 44.063M315Gckpt | config
Spatial-Mamba-BMask R-CNN1x50.4 / 45.1115M494Gckpt | config
Spatial-Mamba-TMask R-CNN3x49.3 / 43.846M261Gckpt | config
Spatial-Mamba-SMask R-CNN3x50.5 / 44.663M315Gckpt | config
ADE20K Semantic Segmentation
backbonemethodresolutionmIoU (ss/ms)#paramFLOPsdownload
Spatial-Mamba-TUPerNet512x51248.6 / 49.457M936Gckpt | config
Spatial-Mamba-SUPerNet512x51250.6 / 51.473M992Gckpt | config
Spatial-Mamba-BUPerNet512x51251.8 / 52.6127M1176Gckpt | config

πŸ“š Data Preparation

  • ImageNet is an image database organized according to the WordNet hierarchy. Download and extract ImageNet train and val images from http://image-net.org/. Organize the data into the following directory structure:

    imagenet/
    β”œβ”€β”€ train/
    β”‚   β”œβ”€β”€ n01440764/  (Example synset ID)
    β”‚   β”‚   β”œβ”€β”€ image1.JPEG
    β”‚   β”‚   β”œβ”€β”€ image2.JPEG
    β”‚   β”‚   └── ...
    β”‚   β”œβ”€β”€ n01443537/  (Another synset ID)
    β”‚   β”‚   └── ...
    β”‚   └── ...
    └── val/
        β”œβ”€β”€ n01440764/  (Example synset ID)
        β”‚   β”œβ”€β”€ image1.JPEG
        β”‚   └── ...
        └── ...
    
  • COCO is a large-scale object detection, segmentation, and captioning dataset. Please visit http://cocodataset.org/ for more information, including for the data, paper, and tutorials. COCO API also provides a concise and efficient way to process the data.

  • ADE20K is composed of more than 27K images from the SUN and Places databases. Please visit https://ade20k.csail.mit.edu/ for more information and see the GitHub Repository for an overview of how to access and explore ADE20K.

πŸš€ Quick Start

  • Image Classification

    To train Spatial-Mamba models for classification on ImageNet, use the following commands for different configurations:

    cd classification 
    python -m torch.distributed.launch --nnodes=1 --node_rank=0 --nproc_per_node=8 --master_addr="127.0.0.1" --master_port=29501 main.py --cfg </path/to/config> --batch-size 128 --data-path </path/of/dataset> --output /tmp
    

    To evaluate the performance with pre-trained weights:

    cd classification 
    python -m torch.distributed.launch --nnodes=1 --node_rank=0 --nproc_per_node=1 --master_addr="127.0.0.1" --master_port=29501 main.py --cfg </path/to/config> --batch-size 128 --data-path </path/of/dataset> --output /tmp --pretrained </path/of/checkpoint>
    
  • Detection and Segmentation

    To train with mmdetection or mmsegmentation:

    cd detection
    bash ./tools/dist_train.sh </path/to/detection/config> 8
    
    cd segmentation
    bash ./tools/dist_train.sh </path/to/segmentation/config> 8
    

    To evaluate with mmdetection or mmsegmentation:

    cd detection
    bash ./tools/dist_test.sh </path/to/detection/config> </path/to/detection/checkpoint> 1
    
    cd segmentation
    bash ./tools/dist_test.sh </path/to/segmentation/config> </path/to/segmentation/checkpoint> 1
    

    use --tta to get the mIoU(ms) in segmentation.

πŸ–ŠοΈ Citation

@inproceedings{
  xiao2025spatialmamba,
  title={Spatial-Mamba: Effective Visual State Space Models via Structure-Aware State Fusion},
  author={Chaodong Xiao and Minghan Li and Zhengqiang Zhang and Deyu Meng and Lei Zhang},
  booktitle={The Thirteenth International Conference on Learning Representations},
  year={2025}
}

πŸ’Œ Acknowledgments

This project is largely based on Mamba, VMamba, MLLA, Swin-Transformer, RepLKNet and OpenMMLab. We are truly grateful for their excellent work.

🎫 License

This project is released under the Apache 2.0 license.