├── .gitignore ├── LICENSE.md ├── README.md ├── bias_correction.py ├── generate_patches.py ├── main.py ├── model.py ├── prepare_for_submission.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/README.md -------------------------------------------------------------------------------- /bias_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/bias_correction.py -------------------------------------------------------------------------------- /generate_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/generate_patches.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/model.py -------------------------------------------------------------------------------- /prepare_for_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/prepare_for_submission.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xf4j/brats17/HEAD/utils.py --------------------------------------------------------------------------------