Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[RS 2021] PyTorch implementation of SS-MLP: A Novel Spectral-Spatial MLP Architecture for Hyperspectral Image Classification.

Notifications You must be signed in to change notification settings

zhe-meng/SS-MLP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

SS-MLP

SS-MLP: A Novel Spectral-Spatial MLP Architecture for Hyperspectral Image Classification

PyTorch implementation of SS-MLP: A Novel Spectral-Spatial MLP Architecture for Hyperspectral Image Classification.

1 2

Basic Usage

import torch
from SSMLP import SSMLP

model = SSMLP(num_classes=16, channels=200, patchsize=11)
model.eval()
print(model)
input = torch.randn(100, 200, 11, 11)
y = model(input)
print(y.size())  # (100, 16)

Paper

SS-MLP: A Novel Spectral-Spatial MLP Architecture for Hyperspectral Image Classification

Please cite our paper if you find it useful for your research.

@article{meng2021ss,
  title={SS-MLP: A novel spectral-spatial MLP architecture for hyperspectral image classification},
  author={Meng, Zhe and Zhao, Feng and Liang, Miaomiao},
  journal={Remote Sensing},
  volume={13},
  number={20},
  pages={4060},
  year={2021},
  publisher={MDPI}
}

Reference Paper

Reference Code

About

[RS 2021] PyTorch implementation of SS-MLP: A Novel Spectral-Spatial MLP Architecture for Hyperspectral Image Classification.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages