├── LICENSE ├── README.md ├── SST-Former.png ├── __pycache__ ├── crossvit.cpython-38.pyc ├── crossvit.cpython-39.pyc ├── module.cpython-38.pyc ├── module.cpython-39.pyc ├── ss_concat.cpython-38.pyc ├── ss_diff.cpython-38.pyc ├── ss_diff.cpython-39.pyc ├── sstformer.cpython-39.pyc ├── sstvit.cpython-38.pyc ├── sstvit.cpython-39.pyc ├── vit_pytorch.cpython-38.pyc └── vit_pytorch.cpython-39.pyc ├── data └── farmland │ └── China_Change_Dataset.mat ├── demo.py ├── image_mask.py ├── log └── ssvit_v2_farmland.pth ├── module.py ├── result └── image_mask.py └── sstvit.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/README.md -------------------------------------------------------------------------------- /SST-Former.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/SST-Former.png -------------------------------------------------------------------------------- /__pycache__/crossvit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/crossvit.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/crossvit.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/crossvit.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/module.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/module.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/module.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/ss_concat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/ss_concat.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/ss_diff.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/ss_diff.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/ss_diff.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/ss_diff.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/sstformer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/sstformer.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/sstvit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/sstvit.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/sstvit.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/sstvit.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/vit_pytorch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/vit_pytorch.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/vit_pytorch.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/__pycache__/vit_pytorch.cpython-39.pyc -------------------------------------------------------------------------------- /data/farmland/China_Change_Dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/data/farmland/China_Change_Dataset.mat -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/demo.py -------------------------------------------------------------------------------- /image_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/image_mask.py -------------------------------------------------------------------------------- /log/ssvit_v2_farmland.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/log/ssvit_v2_farmland.pth -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/module.py -------------------------------------------------------------------------------- /result/image_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/result/image_mask.py -------------------------------------------------------------------------------- /sstvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhengwang-heu/IEEE_TGRS_SSTFormer/HEAD/sstvit.py --------------------------------------------------------------------------------