├── .DS_Store ├── .gitignore ├── 3d_cnn_wtih_ae.py ├── AD_2DRandomSlicesData.py ├── AD_2DSlicesData.py ├── AD_2DTestingSlicesData.py ├── AD_3DRandomPatch.py ├── AD_Dataset.py ├── AD_Standard_2DRandomSlicesData.py ├── AD_Standard_2DSlicesData.py ├── AD_Standard_2DTestingSlices.py ├── AD_Standard_3DRandomPatch.py ├── AD_Standard_CNN_Dataset.py ├── AlexNet2D.py ├── AlexNet3D.py ├── CV final report.pdf ├── README.md ├── ResNet2D.py ├── ResNet3D.py ├── autoencoder.py ├── cnn_3d_with_ae.py ├── cnn_3d_wtih_ae.py ├── custom_transform.py ├── custom_transform2D.py ├── imageExtract.py ├── images ├── f1.png ├── f2.png ├── f3.png ├── f4.png ├── f5.png ├── f6.png └── t1.png ├── main_alexnet.py ├── main_autoencoder.py ├── main_cnn_autoencoder.py ├── main_resnet.py ├── test.py ├── test.txt ├── test_2C_new.txt ├── test_2classes.txt ├── test_encoder.py ├── train.txt ├── train_2C_new.txt ├── train_2classes.txt └── validation_2C_new.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Image/ 3 | ./*.pyc 4 | -------------------------------------------------------------------------------- /3d_cnn_wtih_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/3d_cnn_wtih_ae.py -------------------------------------------------------------------------------- /AD_2DRandomSlicesData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_2DRandomSlicesData.py -------------------------------------------------------------------------------- /AD_2DSlicesData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_2DSlicesData.py -------------------------------------------------------------------------------- /AD_2DTestingSlicesData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_2DTestingSlicesData.py -------------------------------------------------------------------------------- /AD_3DRandomPatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_3DRandomPatch.py -------------------------------------------------------------------------------- /AD_Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Dataset.py -------------------------------------------------------------------------------- /AD_Standard_2DRandomSlicesData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Standard_2DRandomSlicesData.py -------------------------------------------------------------------------------- /AD_Standard_2DSlicesData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Standard_2DSlicesData.py -------------------------------------------------------------------------------- /AD_Standard_2DTestingSlices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Standard_2DTestingSlices.py -------------------------------------------------------------------------------- /AD_Standard_3DRandomPatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Standard_3DRandomPatch.py -------------------------------------------------------------------------------- /AD_Standard_CNN_Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AD_Standard_CNN_Dataset.py -------------------------------------------------------------------------------- /AlexNet2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AlexNet2D.py -------------------------------------------------------------------------------- /AlexNet3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/AlexNet3D.py -------------------------------------------------------------------------------- /CV final report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/CV final report.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/README.md -------------------------------------------------------------------------------- /ResNet2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/ResNet2D.py -------------------------------------------------------------------------------- /ResNet3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/ResNet3D.py -------------------------------------------------------------------------------- /autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/autoencoder.py -------------------------------------------------------------------------------- /cnn_3d_with_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/cnn_3d_with_ae.py -------------------------------------------------------------------------------- /cnn_3d_wtih_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/cnn_3d_wtih_ae.py -------------------------------------------------------------------------------- /custom_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/custom_transform.py -------------------------------------------------------------------------------- /custom_transform2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/custom_transform2D.py -------------------------------------------------------------------------------- /imageExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/imageExtract.py -------------------------------------------------------------------------------- /images/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f1.png -------------------------------------------------------------------------------- /images/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f2.png -------------------------------------------------------------------------------- /images/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f3.png -------------------------------------------------------------------------------- /images/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f4.png -------------------------------------------------------------------------------- /images/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f5.png -------------------------------------------------------------------------------- /images/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/f6.png -------------------------------------------------------------------------------- /images/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/images/t1.png -------------------------------------------------------------------------------- /main_alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/main_alexnet.py -------------------------------------------------------------------------------- /main_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/main_autoencoder.py -------------------------------------------------------------------------------- /main_cnn_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/main_cnn_autoencoder.py -------------------------------------------------------------------------------- /main_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/main_resnet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/test.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/test.txt -------------------------------------------------------------------------------- /test_2C_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/test_2C_new.txt -------------------------------------------------------------------------------- /test_2classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/test_2classes.txt -------------------------------------------------------------------------------- /test_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/test_encoder.py -------------------------------------------------------------------------------- /train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/train.txt -------------------------------------------------------------------------------- /train_2C_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/train_2C_new.txt -------------------------------------------------------------------------------- /train_2classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/train_2classes.txt -------------------------------------------------------------------------------- /validation_2C_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyirui/AD_Prediction/HEAD/validation_2C_new.txt --------------------------------------------------------------------------------