├── README.md ├── config.py ├── dataset-postdam └── train │ └── README.md ├── introduction └── README.md ├── logs └── README.md ├── material ├── 0-label.png ├── 0-true.png ├── 100-label.png ├── 100-true.png ├── 12-label.png ├── 12-true.png ├── 120-label.png ├── 120-true.png ├── 14-label.png ├── 14-true.png ├── 150-label.png ├── 150-true.png ├── 7-label.png ├── 7-true.png ├── train_acc.png ├── train_accuracy_paris.png ├── train_loss.png ├── train_loss_paris.png ├── val_acc.png ├── val_accuracy_paris.png ├── val_loss.png └── val_loss_paris.png ├── model.py ├── test.py ├── train.py ├── utils.py └── 数据集-postdam └── val └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/config.py -------------------------------------------------------------------------------- /dataset-postdam/train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/dataset-postdam/train/README.md -------------------------------------------------------------------------------- /introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/introduction/README.md -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | ## 此处存放训练好的模型 2 | -------------------------------------------------------------------------------- /material/0-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/0-label.png -------------------------------------------------------------------------------- /material/0-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/0-true.png -------------------------------------------------------------------------------- /material/100-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/100-label.png -------------------------------------------------------------------------------- /material/100-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/100-true.png -------------------------------------------------------------------------------- /material/12-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/12-label.png -------------------------------------------------------------------------------- /material/12-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/12-true.png -------------------------------------------------------------------------------- /material/120-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/120-label.png -------------------------------------------------------------------------------- /material/120-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/120-true.png -------------------------------------------------------------------------------- /material/14-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/14-label.png -------------------------------------------------------------------------------- /material/14-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/14-true.png -------------------------------------------------------------------------------- /material/150-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/150-label.png -------------------------------------------------------------------------------- /material/150-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/150-true.png -------------------------------------------------------------------------------- /material/7-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/7-label.png -------------------------------------------------------------------------------- /material/7-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/7-true.png -------------------------------------------------------------------------------- /material/train_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/train_acc.png -------------------------------------------------------------------------------- /material/train_accuracy_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/train_accuracy_paris.png -------------------------------------------------------------------------------- /material/train_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/train_loss.png -------------------------------------------------------------------------------- /material/train_loss_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/train_loss_paris.png -------------------------------------------------------------------------------- /material/val_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/val_acc.png -------------------------------------------------------------------------------- /material/val_accuracy_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/val_accuracy_paris.png -------------------------------------------------------------------------------- /material/val_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/val_loss.png -------------------------------------------------------------------------------- /material/val_loss_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/material/val_loss_paris.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/utils.py -------------------------------------------------------------------------------- /数据集-postdam/ val/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChienWong/ResUnet-a/HEAD/数据集-postdam/ val/README.md --------------------------------------------------------------------------------