├── .gitignore ├── README.md ├── model ├── attention.py ├── canet.py ├── danet.py └── drn.py ├── result ├── canet_drn_d_22 │ ├── config.yaml │ ├── events.out.tfevents.1558416335.yuchi │ ├── loss │ │ ├── loss_train │ │ │ └── events.out.tfevents.1558416381.yuchi │ │ └── loss_val │ │ │ └── events.out.tfevents.1558416381.yuchi │ └── nohup.out ├── danet_drn_d_22 │ ├── config.yaml │ ├── events.out.tfevents.1558235826.yuchi │ ├── events.out.tfevents.1558253914.yuchi │ ├── events.out.tfevents.1558254367.yuchi │ ├── events.out.tfevents.1558254547.yuchi │ ├── events.out.tfevents.1558254782.yuchi │ ├── loss │ │ ├── loss_train │ │ │ ├── events.out.tfevents.1558235872.yuchi │ │ │ └── events.out.tfevents.1558254596.yuchi │ │ └── loss_val │ │ │ ├── events.out.tfevents.1558235872.yuchi │ │ │ └── events.out.tfevents.1558254596.yuchi │ └── nohup.out └── drn_d_22 │ ├── config.yaml │ ├── events.out.tfevents.1558062111.yuchi │ ├── loss │ ├── loss_train │ │ └── events.out.tfevents.1558062192.yuchi │ └── loss_val │ │ └── events.out.tfevents.1558062192.yuchi │ └── nohup.out ├── train.py └── utils ├── checkpoint.py ├── class_weight.py ├── dataset.py ├── mean.py └── transforms.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /model/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/model/attention.py -------------------------------------------------------------------------------- /model/canet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/model/canet.py -------------------------------------------------------------------------------- /model/danet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/model/danet.py -------------------------------------------------------------------------------- /model/drn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/model/drn.py -------------------------------------------------------------------------------- /result/canet_drn_d_22/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/canet_drn_d_22/config.yaml -------------------------------------------------------------------------------- /result/canet_drn_d_22/events.out.tfevents.1558416335.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/canet_drn_d_22/events.out.tfevents.1558416335.yuchi -------------------------------------------------------------------------------- /result/canet_drn_d_22/loss/loss_train/events.out.tfevents.1558416381.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/canet_drn_d_22/loss/loss_train/events.out.tfevents.1558416381.yuchi -------------------------------------------------------------------------------- /result/canet_drn_d_22/loss/loss_val/events.out.tfevents.1558416381.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/canet_drn_d_22/loss/loss_val/events.out.tfevents.1558416381.yuchi -------------------------------------------------------------------------------- /result/canet_drn_d_22/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/canet_drn_d_22/nohup.out -------------------------------------------------------------------------------- /result/danet_drn_d_22/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/config.yaml -------------------------------------------------------------------------------- /result/danet_drn_d_22/events.out.tfevents.1558235826.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/events.out.tfevents.1558235826.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/events.out.tfevents.1558253914.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/events.out.tfevents.1558253914.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/events.out.tfevents.1558254367.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/events.out.tfevents.1558254367.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/events.out.tfevents.1558254547.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/events.out.tfevents.1558254547.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/events.out.tfevents.1558254782.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/events.out.tfevents.1558254782.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/loss/loss_train/events.out.tfevents.1558235872.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/loss/loss_train/events.out.tfevents.1558235872.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/loss/loss_train/events.out.tfevents.1558254596.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/loss/loss_train/events.out.tfevents.1558254596.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/loss/loss_val/events.out.tfevents.1558235872.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/loss/loss_val/events.out.tfevents.1558235872.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/loss/loss_val/events.out.tfevents.1558254596.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/loss/loss_val/events.out.tfevents.1558254596.yuchi -------------------------------------------------------------------------------- /result/danet_drn_d_22/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/danet_drn_d_22/nohup.out -------------------------------------------------------------------------------- /result/drn_d_22/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/drn_d_22/config.yaml -------------------------------------------------------------------------------- /result/drn_d_22/events.out.tfevents.1558062111.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/drn_d_22/events.out.tfevents.1558062111.yuchi -------------------------------------------------------------------------------- /result/drn_d_22/loss/loss_train/events.out.tfevents.1558062192.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/drn_d_22/loss/loss_train/events.out.tfevents.1558062192.yuchi -------------------------------------------------------------------------------- /result/drn_d_22/loss/loss_val/events.out.tfevents.1558062192.yuchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/drn_d_22/loss/loss_val/events.out.tfevents.1558062192.yuchi -------------------------------------------------------------------------------- /result/drn_d_22/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/result/drn_d_22/nohup.out -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/utils/checkpoint.py -------------------------------------------------------------------------------- /utils/class_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/utils/class_weight.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/utils/mean.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiskw713/DualAttention_for_Segmentation/HEAD/utils/transforms.py --------------------------------------------------------------------------------