├── LICENSE ├── README.md ├── data_augmentation ├── BraTS_pre_training.py └── config.py ├── models ├── Swin_UNTER │ └── pretrain_frequency_2d.py ├── __init__.py └── head.py ├── requirement.txt ├── run_frequency.sh ├── tools ├── criterions.py └── loss.py └── train_2d_FreMIM └── train_frequency_pretrain_2D_fore.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/README.md -------------------------------------------------------------------------------- /data_augmentation/BraTS_pre_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/data_augmentation/BraTS_pre_training.py -------------------------------------------------------------------------------- /data_augmentation/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/data_augmentation/config.py -------------------------------------------------------------------------------- /models/Swin_UNTER/pretrain_frequency_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/models/Swin_UNTER/pretrain_frequency_2d.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/models/head.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/requirement.txt -------------------------------------------------------------------------------- /run_frequency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/run_frequency.sh -------------------------------------------------------------------------------- /tools/criterions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/tools/criterions.py -------------------------------------------------------------------------------- /tools/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/tools/loss.py -------------------------------------------------------------------------------- /train_2d_FreMIM/train_frequency_pretrain_2D_fore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubics-Xuan/FreMIM/HEAD/train_2d_FreMIM/train_frequency_pretrain_2D_fore.py --------------------------------------------------------------------------------