gitextract_zlon6qmm/ ├── .idea/ │ ├── CA-Net.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── Datasets/ │ ├── ISIC2018.py │ └── folder0/ │ └── folder0_test.list ├── Models/ │ ├── __init__.py │ ├── layers/ │ │ ├── __init__.py │ │ ├── channel_attention_layer.py │ │ ├── grid_attention_layer.py │ │ ├── modules.py │ │ ├── nonlocal_layer.py │ │ └── scale_attention_layer.py │ ├── networks/ │ │ └── network.py │ └── networks_other.py ├── README.md ├── create_folder.py ├── data/ │ └── ISIC2018_Task1_npy_all/ │ ├── image/ │ │ └── ISIC_0010854.npy │ └── label/ │ └── ISIC_0010854_segmentation.npy ├── isic_preprocess.py ├── main.py ├── result/ │ └── atten_map/ │ └── 25_2_8_wgt ├── show_fused_heatmap.py ├── utils/ │ ├── binary.py │ ├── dice_loss.py │ ├── evaluation.py │ └── transform.py └── validation.py