An open API service indexing awesome lists of open source software.

https://github.com/jahongir7174/deeplab-pt

DeepLabV3 plus implementation using PyTorch
https://github.com/jahongir7174/deeplab-pt

deeplab-v3-plus efficientnetv2 pytorch training

Last synced: about 2 months ago
JSON representation

DeepLabV3 plus implementation using PyTorch

Awesome Lists containing this project

README

          

# DeepLabV3+

[DeepLabV3+](https://arxiv.org/pdf/1802.02611.pdf) implementation for Semantic Segmentation using PyTorch

#### Train
* Run `python main.py` for training

#### Dataset structure (similar to CamVid dataset)
├── Dataset folder
├── train
├── 1111.png
├── 2222.png
├── train_labels
├── 1111_L.png
├── 2222_L.png
├── class_dict.csv

#### Note
* default feature extractor is [EfficientNetV2-S](https://arxiv.org/pdf/2104.00298.pdf)
* changing configuration of training, change parameters in `utils/config.py`
* default loss function is `weighted cross entropy`