├── README.md ├── config.py ├── data.py ├── detection ├── README.md ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ └── IDRiD_detection.py │ │ ├── models │ │ │ └── faster_rcnn_r50_fpn.py │ │ └── schedules │ │ │ └── schedule_1x.py │ └── faster_rcnn │ │ └── faster_rcnn_r50_fpn_1x_coco.py └── scripts │ ├── build_dataset.py │ ├── csv2coco.py │ ├── detect.py │ └── mask2bbox.py ├── imgs └── framework.png ├── main.py ├── modules.py ├── requirements.txt ├── resnet.py ├── tools ├── crop.py └── model2weights.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/config.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/data.py -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/README.md -------------------------------------------------------------------------------- /detection/configs/_base_/datasets/IDRiD_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/configs/_base_/datasets/IDRiD_detection.py -------------------------------------------------------------------------------- /detection/configs/_base_/models/faster_rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/configs/_base_/models/faster_rcnn_r50_fpn.py -------------------------------------------------------------------------------- /detection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /detection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /detection/scripts/build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/scripts/build_dataset.py -------------------------------------------------------------------------------- /detection/scripts/csv2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/scripts/csv2coco.py -------------------------------------------------------------------------------- /detection/scripts/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/scripts/detect.py -------------------------------------------------------------------------------- /detection/scripts/mask2bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/detection/scripts/mask2bbox.py -------------------------------------------------------------------------------- /imgs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/imgs/framework.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/main.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/modules.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/requirements.txt -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/resnet.py -------------------------------------------------------------------------------- /tools/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/tools/crop.py -------------------------------------------------------------------------------- /tools/model2weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/tools/model2weights.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YijinHuang/Lesion-based-Contrastive-Learning/HEAD/utils.py --------------------------------------------------------------------------------