Building fully convolutional neural networks in PyTorch.
- data loading
- Preprocessing
- define model
- construct loss func
- select optimization algo
- set up eval metrics
- training / testing methods
- https://pytorch.org/docs/stable/torchvision/datasets.html#cityscapes
- https://www.cityscapes-dataset.com/downloads/
- https://github.com/mcordts/cityscapesScripts
- https://github.com/SatyamGaba/semantic_segmentation_cityscape
- https://github.com/nyoki-mtl/pytorch-segmentation
- https://github.com/meetshah1995/pytorch-semseg
- https://paperswithcode.com/sota/ semantic-segmentation-on-cityscapes
- https://discuss.pytorch.org/t/ best-available-semantic-segmentation-in-pytorch/13107
- https://meetshah1995.github.io/semantic-segmentation/deep-learning/pytorch/visdom/2017/06/01/semantic-segmentation-over-the-years.html
- https://www.learnopencv.com/pytorch-for-beginners-semantic-segmentation-using-torchvision/
- https://github.com/hoya012/semantic-segmentation-tutorial-pytorch
- https://medium.com/pytorch/accelerate-your-hyperparameter-optimization-with-pytorchs-ecosystem-tools-bc17001b9a49
- https://pytorch.org/tutorials/intermediate/torchvision_tutorial.html
- https://medium.com/analytics-vidhya/creating-a-very-simple-u-net-model-with-pytorch-for-semantic-segmentation-of-satellite-images-223aa216e705
- https://github.com/pochih/FCN-pytorch/blob/master/python/fcn.py
- https://github.com/wkentaro/pytorch-fcn/blob/master/torchfcn/models/fcn8s.py
- https://www.pyimagesearch.com/2016/11/07/intersection-over-union-iou-for-object-detection/
- https://github.com/amdegroot/ssd.pytorch/blob/master/layers/box_utils.py#L48
- https://github.com/omerbsezer/Fast-Pytorch/blob/master/README.md
- CONV2D a. https://pytorch.org/docs/stable/generated/torch.nn.Conv2d.html b. https://www.programcreek.com/python/example/107691/torch.nn.Conv2d
- Max_Pool a. https://pytorch.org/docs/stable/generated/torch.nn.Conv2d.html b.
- Average Pool a. https://pytorch.org/docs/stable/nn.functional.html#torch.nn.functional.avg_pool2d b.
- ConvTranspoose2D a. https://pytorch.org/docs/stable/generated/torch.nn.ConvTranspose2d.html b.
- Optimizer a. https://pytorch.org/docs/stable/optim.html b.
- Transforms a. https://pytorch.org/docs/stable/torchvision/transforms.html b.
- Torch sgd a. https://pytorch.org/docs/stable/optim.html?#torch.optim.SGD b.