├── .idea ├── CANet-TMI19.iml ├── deployment.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── webServers.xml └── workspace.xml ├── README.md ├── average_result.py ├── baseline.py ├── data ├── 10fold │ └── 10fold │ │ ├── fold1.txt │ │ ├── fold10.txt │ │ ├── fold2.txt │ │ ├── fold3.txt │ │ ├── fold4.txt │ │ ├── fold5.txt │ │ ├── fold6.txt │ │ ├── fold7.txt │ │ ├── fold8.txt │ │ └── fold9.txt └── file_list.txt ├── datasets ├── amd_dataset.py ├── drdme_dataset.py ├── kaggle.py ├── localization_dataset.py ├── missidor.py ├── pm_dataset.py └── segmentation_dataset.py ├── figure └── framework.png ├── lr_scheduler.py ├── messidor_scripts ├── eval_fold.sh └── train_fold.sh ├── models ├── bam.py ├── cbam.py ├── layer.py ├── model_resnet.py ├── resnet50.py └── vgg.py ├── test_baseline.py └── utils.py /.idea/CANet-TMI19.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/CANet-TMI19.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/README.md -------------------------------------------------------------------------------- /average_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/average_result.py -------------------------------------------------------------------------------- /baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/baseline.py -------------------------------------------------------------------------------- /data/10fold/10fold/fold1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold1.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold10.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold2.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold3.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold4.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold5.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold6.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold7.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold8.txt -------------------------------------------------------------------------------- /data/10fold/10fold/fold9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/10fold/10fold/fold9.txt -------------------------------------------------------------------------------- /data/file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/data/file_list.txt -------------------------------------------------------------------------------- /datasets/amd_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/amd_dataset.py -------------------------------------------------------------------------------- /datasets/drdme_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/drdme_dataset.py -------------------------------------------------------------------------------- /datasets/kaggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/kaggle.py -------------------------------------------------------------------------------- /datasets/localization_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/localization_dataset.py -------------------------------------------------------------------------------- /datasets/missidor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/missidor.py -------------------------------------------------------------------------------- /datasets/pm_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/pm_dataset.py -------------------------------------------------------------------------------- /datasets/segmentation_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/datasets/segmentation_dataset.py -------------------------------------------------------------------------------- /figure/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/figure/framework.png -------------------------------------------------------------------------------- /lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/lr_scheduler.py -------------------------------------------------------------------------------- /messidor_scripts/eval_fold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/messidor_scripts/eval_fold.sh -------------------------------------------------------------------------------- /messidor_scripts/train_fold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/messidor_scripts/train_fold.sh -------------------------------------------------------------------------------- /models/bam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/bam.py -------------------------------------------------------------------------------- /models/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/cbam.py -------------------------------------------------------------------------------- /models/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/layer.py -------------------------------------------------------------------------------- /models/model_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/model_resnet.py -------------------------------------------------------------------------------- /models/resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/resnet50.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/models/vgg.py -------------------------------------------------------------------------------- /test_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/test_baseline.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmengli/CANet/HEAD/utils.py --------------------------------------------------------------------------------