├── .DS_Store ├── README.md ├── data ├── .DS_Store ├── BraTS2Dpreprocessing-master │ ├── .gitattributes │ ├── 18hgg.csv │ ├── 18lgg.csv │ ├── 19hgg.csv │ ├── 19lgg.csv │ ├── GetTestingSetsFrom2019.ipynb │ ├── GetTrainingSets.ipynb │ └── README.md └── BraTS3Dpreprocessing-master │ ├── .gitattributes │ ├── 18hgg.csv │ ├── 18lgg.csv │ ├── 19hgg.csv │ ├── 19lgg.csv │ ├── Get3Dtraintestdata.ipynb │ └── README.md ├── model2D ├── .DS_Store ├── DenseUnet_BraTs-master │ ├── .gitattributes │ ├── README.md │ ├── dataset.py │ ├── denseUnet.py │ ├── losses.py │ ├── metrics.py │ ├── test.py │ ├── train.py │ └── utils.py ├── FCN2D_For_BraTs-master │ ├── .gitattributes │ ├── FCN.py │ ├── README.md │ ├── __pycache__ │ │ ├── FCN.cpython-36.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── losses.cpython-36.pyc │ │ ├── metrics.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── test.py │ ├── train.py │ └── utils.py ├── NestedUnet_ResBlock-master │ ├── .gitattributes │ ├── .vs │ │ └── slnx.sqlite │ ├── README.md │ ├── __pycache__ │ │ ├── dataset.cpython-36.pyc │ │ ├── losses.cpython-36.pyc │ │ ├── metrics.cpython-36.pyc │ │ ├── myresnet34unetplus.cpython-36.pyc │ │ ├── myresnetunetplus.cpython-36.pyc │ │ ├── resnet34unetplus.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── myresnetunetplus.py │ ├── test.py │ ├── train.py │ └── utils.py ├── UNet2D_BraTs-master │ ├── .gitattributes │ ├── README.md │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── test.py │ ├── train.py │ ├── unet.py │ └── utils.py ├── deepresunet_brats-master │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── mymodel.py │ ├── test.py │ ├── train.py │ └── utils.py ├── hybridresunet-master │ ├── .gitattributes │ ├── README.md │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── mymodel.py │ ├── test.py │ ├── train.py │ └── utils.py ├── unet3P-master │ ├── .gitattributes │ ├── README.md │ ├── UNet_3Plus.py │ ├── dataset.py │ ├── init_weights.py │ ├── layers.py │ ├── losses.py │ ├── metrics.py │ ├── test.py │ ├── train.py │ └── utils.py └── vnet_code-master │ ├── .gitattributes │ ├── README.md │ ├── dataset.py │ ├── losses.py │ ├── metrics.py │ ├── test.py │ ├── train.py │ ├── utils.py │ └── vnet.py └── model3D ├── .DS_Store ├── Unet3D-master ├── .DS_Store ├── .gitattributes ├── .ipynb_checkpoints │ └── TEST-checkpoint.ipynb ├── README.md ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── losses.cpython-36.pyc │ ├── metrics.cpython-36.pyc │ ├── unet3d.cpython-36.pyc │ └── utils.cpython-36.pyc ├── dataset.py ├── losses.py ├── metrics.py ├── test.py ├── train.py ├── unet3d.py └── utils.py └── vnet_code ├── .DS_Store ├── README.md ├── dataset.py ├── losses.py ├── metrics.py ├── test.py ├── train.py ├── utils.py └── vnet.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/README.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/.gitattributes -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/18hgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/18hgg.csv -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/18lgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/18lgg.csv -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/19hgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/19hgg.csv -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/19lgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/19lgg.csv -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/GetTestingSetsFrom2019.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/GetTestingSetsFrom2019.ipynb -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/GetTrainingSets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS2Dpreprocessing-master/GetTrainingSets.ipynb -------------------------------------------------------------------------------- /data/BraTS2Dpreprocessing-master/README.md: -------------------------------------------------------------------------------- 1 | # BraTS2Dpreprocessing 2 | 3 | -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/.gitattributes -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/18hgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/18hgg.csv -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/18lgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/18lgg.csv -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/19hgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/19hgg.csv -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/19lgg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/19lgg.csv -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/Get3Dtraintestdata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/data/BraTS3Dpreprocessing-master/Get3Dtraintestdata.ipynb -------------------------------------------------------------------------------- /data/BraTS3Dpreprocessing-master/README.md: -------------------------------------------------------------------------------- 1 | # BraTS3Dpreprocessing 2 | 3 | -------------------------------------------------------------------------------- /model2D/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/.DS_Store -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/.gitattributes -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/README.md: -------------------------------------------------------------------------------- 1 | # DenseUnet_BraTs 2 | 3 | -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/dataset.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/denseUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/denseUnet.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/losses.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/metrics.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/test.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/train.py -------------------------------------------------------------------------------- /model2D/DenseUnet_BraTs-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/DenseUnet_BraTs-master/utils.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/.gitattributes -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/FCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/FCN.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/README.md: -------------------------------------------------------------------------------- 1 | # FCN2D 2 | 3 | -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/__pycache__/FCN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/__pycache__/FCN.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/__pycache__/losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/__pycache__/losses.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/dataset.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/losses.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/metrics.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/test.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/train.py -------------------------------------------------------------------------------- /model2D/FCN2D_For_BraTs-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/FCN2D_For_BraTs-master/utils.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/.gitattributes -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/.vs/slnx.sqlite -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/README.md: -------------------------------------------------------------------------------- 1 | # NestedUnet_ResBlock 2 | 3 | -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/losses.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/myresnet34unetplus.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/myresnet34unetplus.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/myresnetunetplus.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/myresnetunetplus.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/resnet34unetplus.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/resnet34unetplus.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/dataset.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/losses.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/metrics.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/myresnetunetplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/myresnetunetplus.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/test.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/train.py -------------------------------------------------------------------------------- /model2D/NestedUnet_ResBlock-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/NestedUnet_ResBlock-master/utils.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/.gitattributes -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/README.md: -------------------------------------------------------------------------------- 1 | # UNet2D_BraTs 2 | 3 | -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/dataset.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/losses.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/metrics.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/test.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/train.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/unet.py -------------------------------------------------------------------------------- /model2D/UNet2D_BraTs-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/UNet2D_BraTs-master/utils.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/dataset.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/losses.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/metrics.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/mymodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/mymodel.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/test.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/train.py -------------------------------------------------------------------------------- /model2D/deepresunet_brats-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/deepresunet_brats-master/utils.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/.gitattributes -------------------------------------------------------------------------------- /model2D/hybridresunet-master/README.md: -------------------------------------------------------------------------------- 1 | # hybridresunet 2 | 3 | -------------------------------------------------------------------------------- /model2D/hybridresunet-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/dataset.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/losses.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/metrics.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/mymodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/mymodel.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/test.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/train.py -------------------------------------------------------------------------------- /model2D/hybridresunet-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/hybridresunet-master/utils.py -------------------------------------------------------------------------------- /model2D/unet3P-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/.gitattributes -------------------------------------------------------------------------------- /model2D/unet3P-master/README.md: -------------------------------------------------------------------------------- 1 | # unet3P 2 | 3 | -------------------------------------------------------------------------------- /model2D/unet3P-master/UNet_3Plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/UNet_3Plus.py -------------------------------------------------------------------------------- /model2D/unet3P-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/dataset.py -------------------------------------------------------------------------------- /model2D/unet3P-master/init_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/init_weights.py -------------------------------------------------------------------------------- /model2D/unet3P-master/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/layers.py -------------------------------------------------------------------------------- /model2D/unet3P-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/losses.py -------------------------------------------------------------------------------- /model2D/unet3P-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/metrics.py -------------------------------------------------------------------------------- /model2D/unet3P-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/test.py -------------------------------------------------------------------------------- /model2D/unet3P-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/train.py -------------------------------------------------------------------------------- /model2D/unet3P-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/unet3P-master/utils.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/.gitattributes -------------------------------------------------------------------------------- /model2D/vnet_code-master/README.md: -------------------------------------------------------------------------------- 1 | # vnet_code 2 | 3 | -------------------------------------------------------------------------------- /model2D/vnet_code-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/dataset.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/losses.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/metrics.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/test.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/train.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/utils.py -------------------------------------------------------------------------------- /model2D/vnet_code-master/vnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model2D/vnet_code-master/vnet.py -------------------------------------------------------------------------------- /model3D/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/.DS_Store -------------------------------------------------------------------------------- /model3D/Unet3D-master/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/.DS_Store -------------------------------------------------------------------------------- /model3D/Unet3D-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/.gitattributes -------------------------------------------------------------------------------- /model3D/Unet3D-master/.ipynb_checkpoints/TEST-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/.ipynb_checkpoints/TEST-checkpoint.ipynb -------------------------------------------------------------------------------- /model3D/Unet3D-master/README.md: -------------------------------------------------------------------------------- 1 | # Unet3D 2 | 3 | -------------------------------------------------------------------------------- /model3D/Unet3D-master/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /model3D/Unet3D-master/__pycache__/losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/__pycache__/losses.cpython-36.pyc -------------------------------------------------------------------------------- /model3D/Unet3D-master/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /model3D/Unet3D-master/__pycache__/unet3d.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/__pycache__/unet3d.cpython-36.pyc -------------------------------------------------------------------------------- /model3D/Unet3D-master/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /model3D/Unet3D-master/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/dataset.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/losses.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/metrics.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/test.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/train.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/unet3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/unet3d.py -------------------------------------------------------------------------------- /model3D/Unet3D-master/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/Unet3D-master/utils.py -------------------------------------------------------------------------------- /model3D/vnet_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/.DS_Store -------------------------------------------------------------------------------- /model3D/vnet_code/README.md: -------------------------------------------------------------------------------- 1 | # vnet_code 2 | 3 | -------------------------------------------------------------------------------- /model3D/vnet_code/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/dataset.py -------------------------------------------------------------------------------- /model3D/vnet_code/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/losses.py -------------------------------------------------------------------------------- /model3D/vnet_code/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/metrics.py -------------------------------------------------------------------------------- /model3D/vnet_code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/test.py -------------------------------------------------------------------------------- /model3D/vnet_code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/train.py -------------------------------------------------------------------------------- /model3D/vnet_code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/utils.py -------------------------------------------------------------------------------- /model3D/vnet_code/vnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merofine/BrainTumorSegmentation/HEAD/model3D/vnet_code/vnet.py --------------------------------------------------------------------------------