├── .gitignore ├── LICENSE ├── README.md ├── configs ├── config_setting.py └── config_setting_synapse.py ├── data └── README.md ├── datasets └── dataset.py ├── engine.py ├── engine_synapse.py ├── models └── vmunet │ ├── vmamba.py │ └── vmunet.py ├── pre_trained_weights └── README.md ├── results └── README.md ├── train.py ├── train_synapse.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/README.md -------------------------------------------------------------------------------- /configs/config_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/configs/config_setting.py -------------------------------------------------------------------------------- /configs/config_setting_synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/configs/config_setting_synapse.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | You could put the datasets here. -------------------------------------------------------------------------------- /datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/datasets/dataset.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/engine.py -------------------------------------------------------------------------------- /engine_synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/engine_synapse.py -------------------------------------------------------------------------------- /models/vmunet/vmamba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/models/vmunet/vmamba.py -------------------------------------------------------------------------------- /models/vmunet/vmunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/models/vmunet/vmunet.py -------------------------------------------------------------------------------- /pre_trained_weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/pre_trained_weights/README.md -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/results/README.md -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/train.py -------------------------------------------------------------------------------- /train_synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/train_synapse.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCruan519/VM-UNet/HEAD/utils.py --------------------------------------------------------------------------------