gitextract_egx_o8ha/ ├── CityCode/ │ ├── Base/ │ │ ├── base_dataloader.py │ │ ├── base_dataset.py │ │ ├── base_model.py │ │ └── base_trainer.py │ ├── DataLoader/ │ │ ├── city.py │ │ └── city_splits/ │ │ ├── 1488_train_supervised.txt │ │ ├── 1488_train_unsupervised.txt │ │ ├── 186_train_supervised.txt │ │ ├── 186_train_unsupervised.txt │ │ ├── 372_train_supervised.txt │ │ ├── 372_train_unsupervised.txt │ │ ├── 744_train_supervised.txt │ │ ├── 744_train_unsupervised.txt │ │ └── val.txt │ ├── Model/ │ │ └── Deeplabv3_plus/ │ │ ├── Backbones/ │ │ │ ├── pretrained/ │ │ │ │ ├── .gitkeep │ │ │ │ └── nil │ │ │ └── resnet.py │ │ ├── EntireModel.py │ │ ├── encoder_decoder.py │ │ └── resnet.py │ ├── Utils/ │ │ ├── conv_2_5d.py │ │ ├── helpers.py │ │ ├── logger.py │ │ ├── losses.py │ │ ├── lr_scheduler.py │ │ ├── metrics.py │ │ ├── pyt_utils.py │ │ ├── ramps.py │ │ ├── sliding_evaluator.py │ │ └── tensor_board.py │ ├── configs/ │ │ └── config_deeplab_v3+.json │ ├── dgx/ │ │ └── download_to_pvc.py │ ├── main.py │ └── train.py ├── LICENSE.md ├── README.md ├── VocCode/ │ ├── Base/ │ │ ├── base_dataloader.py │ │ ├── base_dataset.py │ │ ├── base_model.py │ │ └── base_trainer.py │ ├── DataLoader/ │ │ ├── voc.py │ │ └── voc_splits/ │ │ ├── 13230_train_supervised.txt │ │ ├── 13230_train_unsupervised.txt │ │ ├── 1323_train_supervised.txt │ │ ├── 1323_train_unsupervised.txt │ │ ├── 1464_train_supervised.txt │ │ ├── 1464_train_unsupervised.txt │ │ ├── 183_train_supervised.txt │ │ ├── 183_train_unsupervised.txt │ │ ├── 26460_train_supervised.txt │ │ ├── 26460_train_unsupervised.txt │ │ ├── 2646_train_supervised.txt │ │ ├── 2646_train_unsupervised.txt │ │ ├── 366_train_supervised.txt │ │ ├── 366_train_unsupervised.txt │ │ ├── 52910_train_supervised.txt │ │ ├── 52910_train_unsupervised.txt │ │ ├── 5291_train_supervised.txt │ │ ├── 5291_train_unsupervised.txt │ │ ├── 6620_train_supervised.txt │ │ ├── 6620_train_unsupervised.txt │ │ ├── 662_train_supervised.txt │ │ ├── 662_train_unsupervised.txt │ │ ├── 732_train_supervised.txt │ │ ├── 732_train_unsupervised.txt │ │ ├── 92_train_supervised.txt │ │ ├── 92_train_unsupervised.txt │ │ ├── boxes.json │ │ ├── classes.json │ │ ├── split_reminder.txt │ │ └── val.txt │ ├── Model/ │ │ └── Deeplabv3_plus/ │ │ ├── Backbones/ │ │ │ ├── pretrained/ │ │ │ │ ├── .gitkeep │ │ │ │ └── nil │ │ │ └── resnet.py │ │ ├── EntireModel.py │ │ ├── encoder_decoder.py │ │ └── resnet.py │ ├── Utils/ │ │ ├── conv_2_5d.py │ │ ├── helpers.py │ │ ├── logger.py │ │ ├── losses.py │ │ ├── lr_scheduler.py │ │ ├── metrics.py │ │ ├── pyt_utils.py │ │ ├── ramps.py │ │ └── tensor_board.py │ ├── configs/ │ │ └── config_deeplab_v3+.json │ ├── dgx/ │ │ └── download_to_pvc.py │ ├── inference.py │ ├── main.py │ └── train.py ├── docs/ │ ├── before_start.md │ └── installation.md ├── k8s_launch/ │ ├── Dockerfile │ ├── jobs/ │ │ ├── ept_dgx_runner_city_deep_res101.yml │ │ └── ept_dgx_runner_voc_deep_res101.yml │ └── requirements.txt ├── ps-mt.yml └── scripts/ ├── train_city.sh ├── train_voc_aug.sh ├── train_voc_blender.sh └── train_voc_hq.sh