├── README.md ├── _config.yml ├── data ├── Seg_dataset.py ├── __init__.py ├── data_path │ ├── info.json │ ├── info_test.json │ ├── test.json │ ├── test_images.txt │ ├── train.json │ ├── train_images.txt │ ├── train_labels.txt │ ├── val_images.txt │ └── val_labels.txt ├── seg_transforms.py └── utils │ ├── compute_mean_std.py │ ├── gen_image.py │ └── gen_txt.py ├── eval.py ├── main.sh ├── materials ├── figures │ ├── 0010.gif │ ├── 0014.gif │ └── label_color.png └── final-pre.pdf ├── models ├── __init__.py ├── net_builder.py ├── nets │ ├── UNet.py │ └── __init__.py └── utils │ ├── __init__.py │ ├── init_weights.py │ └── layers.py ├── requirements.txt ├── test.py ├── train.py └── utils ├── __init__.py ├── logger.py ├── loss.py ├── utils.py └── vis.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/_config.yml -------------------------------------------------------------------------------- /data/Seg_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/Seg_dataset.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/data_path/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/info.json -------------------------------------------------------------------------------- /data/data_path/info_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/info_test.json -------------------------------------------------------------------------------- /data/data_path/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/test.json -------------------------------------------------------------------------------- /data/data_path/test_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/test_images.txt -------------------------------------------------------------------------------- /data/data_path/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/train.json -------------------------------------------------------------------------------- /data/data_path/train_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/train_images.txt -------------------------------------------------------------------------------- /data/data_path/train_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/train_labels.txt -------------------------------------------------------------------------------- /data/data_path/val_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/val_images.txt -------------------------------------------------------------------------------- /data/data_path/val_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/data_path/val_labels.txt -------------------------------------------------------------------------------- /data/seg_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/seg_transforms.py -------------------------------------------------------------------------------- /data/utils/compute_mean_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/utils/compute_mean_std.py -------------------------------------------------------------------------------- /data/utils/gen_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/utils/gen_image.py -------------------------------------------------------------------------------- /data/utils/gen_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/data/utils/gen_txt.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/eval.py -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/main.sh -------------------------------------------------------------------------------- /materials/figures/0010.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/materials/figures/0010.gif -------------------------------------------------------------------------------- /materials/figures/0014.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/materials/figures/0014.gif -------------------------------------------------------------------------------- /materials/figures/label_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/materials/figures/label_color.png -------------------------------------------------------------------------------- /materials/final-pre.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/materials/final-pre.pdf -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/net_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/net_builder.py -------------------------------------------------------------------------------- /models/nets/UNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/nets/UNet.py -------------------------------------------------------------------------------- /models/nets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/nets/__init__.py -------------------------------------------------------------------------------- /models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/utils/__init__.py -------------------------------------------------------------------------------- /models/utils/init_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/utils/init_weights.py -------------------------------------------------------------------------------- /models/utils/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/models/utils/layers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShawnBIT/AI-Challenger-Retinal-Edema-Segmentation/HEAD/utils/vis.py --------------------------------------------------------------------------------