SkillAgentSearch skills...

MSSTT

[GRSL 2024] PyTorch implementation of Multiscale super token transformer for hyperspectral image classification.

Install / Use

/learn @zhe-meng/MSSTT
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Multiscale super token transformer for hyperspectral image classification

PyTorch implementation of Multiscale super token transformer for hyperspectral image classification.

image image

Basic Usage

import torch
from MSSTT import MSSTT
# Take the Indian Pines dataset as an example, the number of classes and spectral channels are 16 and 200, respectively.
model = MSSTT(in_chans=200, num_classes=16)
model.eval()
print(model)
input = torch.randn(100, 200, 11, 11)
y = model(input)
print(y.size())

Paper

Multiscale super token transformer for hyperspectral image classification

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

@article{meng2024multi,
  title={Multi-Scale Super Token Transformer for Hyperspectral Image Classification},
  author={Meng, Zhe and Zhang, Taizheng and Zhao, Feng and Chen, Gaige and Liang, Miaomiao},
  journal={IEEE Geoscience and Remote Sensing Letters},
  volume={21},
  pages={1--5},
  year={2024},
  publisher={IEEE}
}

Reference Paper

Reference Code

  • https://github.com/hhb072/SViT
View on GitHub
GitHub Stars4
CategoryProduct
Updated2d ago
Forks0

Languages

Python

Security Score

70/100

Audited on Mar 26, 2026

No findings