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

Skip to content
/ DRIN Public

[RS 2021] PyTorch implementation of deep residual involution network for hyperspectral image classification.

Notifications You must be signed in to change notification settings

zhe-meng/DRIN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Deep Residual Involution Network for Hyperspectral Image Classification

PyTorch implementation of deep residual involution network for hyperspectral image classification.

image

Basic Usage

import torch
from DRIN import DRIN

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

Paper

Deep residual involution network for hyperspectral image classification

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

@article{meng2021deep,
  title={Deep residual involution network for hyperspectral image classification},
  author={Meng, Zhe and Zhao, Feng and Liang, Miaomiao and Xie, Wen},
  journal={Remote Sensing},
  volume={13},
  number={16},
  pages={3055},
  year={2021},
  publisher={MDPI}
}

Reference Paper

Reference Code

About

[RS 2021] PyTorch implementation of deep residual involution network for hyperspectral image classification.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages