├── Data ├── Kenya │ └── Kenya_Rice_2022.tif └── Test │ ├── example.png │ ├── example.tif │ ├── testdata.png │ └── testdata.tif ├── README.md ├── configs └── config_setting.py ├── dataprepare └── Prepare_your_dataset.py ├── engine.py ├── figures └── xmunet.png ├── loader.py ├── models ├── XAI.py ├── XM_UNet.py ├── sandglass.py └── vmamba.py ├── predict.py ├── train.py └── utils.py /Data/Kenya/Kenya_Rice_2022.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/Data/Kenya/Kenya_Rice_2022.tif -------------------------------------------------------------------------------- /Data/Test/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/Data/Test/example.png -------------------------------------------------------------------------------- /Data/Test/example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/Data/Test/example.tif -------------------------------------------------------------------------------- /Data/Test/testdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/Data/Test/testdata.png -------------------------------------------------------------------------------- /Data/Test/testdata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/Data/Test/testdata.tif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/README.md -------------------------------------------------------------------------------- /configs/config_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/configs/config_setting.py -------------------------------------------------------------------------------- /dataprepare/Prepare_your_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/dataprepare/Prepare_your_dataset.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/engine.py -------------------------------------------------------------------------------- /figures/xmunet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/figures/xmunet.png -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/loader.py -------------------------------------------------------------------------------- /models/XAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/models/XAI.py -------------------------------------------------------------------------------- /models/XM_UNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/models/XM_UNet.py -------------------------------------------------------------------------------- /models/sandglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/models/sandglass.py -------------------------------------------------------------------------------- /models/vmamba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/models/vmamba.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/predict.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAR-RICE/XM-UNet/HEAD/utils.py --------------------------------------------------------------------------------