├── IXI_preprocessing.py ├── LICENSE ├── Masks ├── mask_20_256.pickle ├── mask_30_256.pickle └── mask_50_256.pickle ├── Networks ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── generator_model.cpython-36.pyc │ └── unet_parts.cpython-36.pyc ├── discriminator_model.py ├── generator_model.py └── unet_parts.py ├── README.md ├── config.yaml ├── eval.py ├── figures └── architecture.jpg ├── loss.py ├── predict.py ├── requirements.txt ├── train.py └── utils ├── __pycache__ ├── data_save.cpython-36.pyc ├── data_vis.cpython-36.pyc └── dataset.cpython-36.pyc ├── data_save.py ├── data_vis.py └── dataset.py /IXI_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/IXI_preprocessing.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/LICENSE -------------------------------------------------------------------------------- /Masks/mask_20_256.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Masks/mask_20_256.pickle -------------------------------------------------------------------------------- /Masks/mask_30_256.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Masks/mask_30_256.pickle -------------------------------------------------------------------------------- /Masks/mask_50_256.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Masks/mask_50_256.pickle -------------------------------------------------------------------------------- /Networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/__init__.py -------------------------------------------------------------------------------- /Networks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Networks/__pycache__/generator_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/__pycache__/generator_model.cpython-36.pyc -------------------------------------------------------------------------------- /Networks/__pycache__/unet_parts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/__pycache__/unet_parts.cpython-36.pyc -------------------------------------------------------------------------------- /Networks/discriminator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/discriminator_model.py -------------------------------------------------------------------------------- /Networks/generator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/generator_model.py -------------------------------------------------------------------------------- /Networks/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/Networks/unet_parts.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/config.yaml -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/eval.py -------------------------------------------------------------------------------- /figures/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/figures/architecture.jpg -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/loss.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/train.py -------------------------------------------------------------------------------- /utils/__pycache__/data_save.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/__pycache__/data_save.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_vis.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/__pycache__/data_vis.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /utils/data_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/data_save.py -------------------------------------------------------------------------------- /utils/data_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/data_vis.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarDavid/Subsampled-Brain-MRI-Reconstruction-by-Generative-Adversarial-Neural-Networks/HEAD/utils/dataset.py --------------------------------------------------------------------------------