Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Integration:  dvc git github
Jinen Setpal 43c9b950c7
added app token authentication, updated requirements
9 months ago
6c7cf51cff
added minibatch model, minor configuration updates
9 months ago
fdfd47c1c9
removed ipynbs, README cleanup
9 months ago
src
43c9b950c7
added app token authentication, updated requirements
9 months ago
390106a8cf
initialize dvc
2 years ago
9041695c30
data engine integration, architecture fixes
9 months ago
cba92af085
aspp integrations, additional trimming
2 years ago
13d4e0cbb9
added template directories
2 years ago
fdfd47c1c9
removed ipynbs, README cleanup
9 months ago
6c7cf51cff
added minibatch model, minor configuration updates
9 months ago
43c9b950c7
added app token authentication, updated requirements
9 months ago
Storage Buckets
Data Pipeline
Legend
DVC Managed File
Git Managed File
Metric
Stage File
External File

README.md

You have to be logged in to leave a comment. Sign In

[Re] Panoptic-DeepLab: A Simple, Strong, and Fast Baseline for Bottom-Up Panoptic Segmentation

This is a downsampled re-implementation of Panoptic-DeepLab: A Simple, Strong, and Fast Baseline for Bottom-Up Panoptic Segmentation, trained on a single NVIDIA A10G. More details to follow.

Environment

To install requirements:

pip install -r requirements.txt

Training

To train the model detailed in the paper, run the following command:

TRAINING=TRUE/FALSE python -m src.model.deeplab

Project Structure


├── LICENSE
├── README.md               <- you are here!
├── report                  <- reproducibility challenge report
├── requirements.txt        <- training environment
└── src                     <- Source code for use in this project.
    ├── const.py
    ├── data
    │   ├── cityscapes.py   <- cityscapes dataloader creation
    │   └── common.py       <- Dataset-angosting preprocessing routines
    ├── model
    │   ├── aspp.py         <- atrous sparse pyramid pooling layer
    │   ├── decoder.py      <- semantic and instance decoders
    │   ├── deeplab.py      <- primary trainer
    │   ├── encoder.py      <- xception-71 backbone
    │   ├── heads.py        <- semantic, instance center and instance regression heads
    │   ├── loss.py         <- weighted bootsrapped cross-entropy for semantic head
    │   └── metrics.py      <- mIOU, AP, PQ
    └── coco_tools.py       <- pycocotools extensoions

Tip!

Press p or to see the previous file or, n or to see the next file

About

Reproducing the Panoptic-DeepLab paper: A Simple, Strong, and Fast Baseline for Bottom-Up Panoptic Segmentation

Collaborators 1

Comments

Loading...