├── .gitignore ├── DeepLab_v2_res.py ├── DeepLab_v2_vgg.py ├── DeepLab_v3.py ├── DeepLab_v3_plus.py ├── MIT-LICENSE.txt ├── README.md └── poly_scheduler.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /DeepLab_v2_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/DeepLab_v2_res.py -------------------------------------------------------------------------------- /DeepLab_v2_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/DeepLab_v2_vgg.py -------------------------------------------------------------------------------- /DeepLab_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/DeepLab_v3.py -------------------------------------------------------------------------------- /DeepLab_v3_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/DeepLab_v3_plus.py -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /poly_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doiken23/DeepLab_pytorch/HEAD/poly_scheduler.py --------------------------------------------------------------------------------