├── .idea ├── misc.xml ├── modules.xml ├── semantic_segmentation_contest_deeplabv3.iml ├── vcs.xml └── workspace.xml ├── DataGenerate └── __pycache__ │ ├── GetDataset.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── GeneratingBatchSize ├── GetDataset.py └── __init__.py ├── GeneratingDatasets └── get_new_dataset.py ├── NET ├── __init__.py ├── __pycache__ │ └── __init__.cpython-36.pyc ├── aaf │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── layers.cpython-36.pyc │ ├── layers.py │ └── losses.py ├── deeplab_v3.py ├── deeplabv3_DA.py ├── deeplabv3_plus.py ├── pspnet.py ├── resnet_v2 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── resnet_utils.cpython-36.pyc │ │ └── resnet_v2.cpython-36.pyc │ ├── resnet_utils.py │ └── resnet_v2.py ├── resnet_v2_psp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── resnet_utils.cpython-36.pyc │ │ └── resnet_v2.cpython-36.pyc │ ├── resnet_utils.py │ └── resnet_v2.py └── self_attention_layers │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── self_attention_layers.cpython-36.pyc │ └── self_attention_layers.py ├── README.md ├── eval.py ├── resource ├── 1.png ├── 2.png └── 语义分割比赛进展.pptx ├── test1000_stride_400.py ├── test_stride_400.py ├── tools_aaf.py ├── tools_deeplabv3.py ├── tools_deeplabv3_DA.py ├── tools_deeplabv3plus.py ├── tools_psp.py ├── train_aaf.py ├── train_deeplabv3.py ├── train_deeplabv3_DA.py ├── train_deeplabv3plus.py ├── train_deeplabv3plus_4chanel.py ├── train_psp.py └── utils ├── __init__.py ├── __pycache__ └── __init__.cpython-36.pyc └── preprocessing.py /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/semantic_segmentation_contest_deeplabv3.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | _NUM_CLASSES 34 | 35 | 36 | 37 | 39 | 40 | 48 | 49 | 50 | 58 | 59 | 60 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |