├── .gitignore └── .gitignore ├── Checkpoints └── erfnet │ └── official_pretrained │ ├── erfnet_encoder_pretrained.pth.tar │ └── erfnet_pretrained.pth ├── README.md ├── __init__.py ├── dataloader ├── __init__.py ├── definitions │ ├── __init__.py │ └── labels_file.py ├── eval │ ├── __init__.py │ └── metrics.py ├── file_io │ ├── __init__.py │ ├── dir_lister.py │ └── get_path.py └── pt_data_loader │ ├── __init__.py │ ├── basedataset.py │ ├── dataset_parameterset.py │ ├── mytransforms.py │ └── specialdatasets.py ├── environment.yml ├── evaluate_erfnet.py ├── img ├── CIL_pres.png ├── classes_extend_concept-1.png ├── static123_duo.gif └── thesis123_duo.gif ├── inference.py ├── license.txt ├── models ├── __init__.py ├── erfnet.py └── train │ ├── __init__.py │ └── losses.py ├── requierements.txt ├── src ├── __init__.py ├── city_set.py └── options.py ├── train_erfnet_incremental.py ├── train_erfnet_incremental.sh ├── train_erfnet_static.py ├── train_erfnet_static.sh └── val_all_models.sh /.gitignore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/.gitignore/.gitignore -------------------------------------------------------------------------------- /Checkpoints/erfnet/official_pretrained/erfnet_encoder_pretrained.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/Checkpoints/erfnet/official_pretrained/erfnet_encoder_pretrained.pth.tar -------------------------------------------------------------------------------- /Checkpoints/erfnet/official_pretrained/erfnet_pretrained.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/Checkpoints/erfnet/official_pretrained/erfnet_pretrained.pth -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/definitions/labels_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/definitions/labels_file.py -------------------------------------------------------------------------------- /dataloader/eval/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataloader/eval/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/eval/metrics.py -------------------------------------------------------------------------------- /dataloader/file_io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/file_io/dir_lister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/file_io/dir_lister.py -------------------------------------------------------------------------------- /dataloader/file_io/get_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/file_io/get_path.py -------------------------------------------------------------------------------- /dataloader/pt_data_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/pt_data_loader/basedataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/pt_data_loader/basedataset.py -------------------------------------------------------------------------------- /dataloader/pt_data_loader/dataset_parameterset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/pt_data_loader/dataset_parameterset.py -------------------------------------------------------------------------------- /dataloader/pt_data_loader/mytransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/pt_data_loader/mytransforms.py -------------------------------------------------------------------------------- /dataloader/pt_data_loader/specialdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/dataloader/pt_data_loader/specialdatasets.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/environment.yml -------------------------------------------------------------------------------- /evaluate_erfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/evaluate_erfnet.py -------------------------------------------------------------------------------- /img/CIL_pres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/img/CIL_pres.png -------------------------------------------------------------------------------- /img/classes_extend_concept-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/img/classes_extend_concept-1.png -------------------------------------------------------------------------------- /img/static123_duo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/img/static123_duo.gif -------------------------------------------------------------------------------- /img/thesis123_duo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/img/thesis123_duo.gif -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/inference.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/license.txt -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/erfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/models/erfnet.py -------------------------------------------------------------------------------- /models/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/models/train/__init__.py -------------------------------------------------------------------------------- /models/train/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/models/train/losses.py -------------------------------------------------------------------------------- /requierements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/requierements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/city_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/src/city_set.py -------------------------------------------------------------------------------- /src/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/src/options.py -------------------------------------------------------------------------------- /train_erfnet_incremental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/train_erfnet_incremental.py -------------------------------------------------------------------------------- /train_erfnet_incremental.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/train_erfnet_incremental.sh -------------------------------------------------------------------------------- /train_erfnet_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/train_erfnet_static.py -------------------------------------------------------------------------------- /train_erfnet_static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/train_erfnet_static.sh -------------------------------------------------------------------------------- /val_all_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifnspaml/CIL_Segmentation/HEAD/val_all_models.sh --------------------------------------------------------------------------------