├── CODEOWNERS ├── README.md ├── code ├── errata.txt ├── eval_cityscapes.py ├── run.sh ├── run_script.py ├── torchfcn │ ├── __init__.py │ ├── __init__.pyc │ ├── datasets │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── segmentation_datasets.py │ │ ├── segmentation_datasets.py.backup │ │ └── segmentation_datasets.pyc │ ├── ext │ │ └── fcn.berkeleyvision.org │ │ │ ├── data │ │ │ ├── nyud │ │ │ │ ├── classes.txt │ │ │ │ ├── test.txt │ │ │ │ ├── train.txt │ │ │ │ └── val.txt │ │ │ ├── pascal-context │ │ │ │ ├── classes-400.txt │ │ │ │ └── classes-59.txt │ │ │ ├── pascal │ │ │ │ ├── classes.txt │ │ │ │ └── seg11valid.txt │ │ │ └── sift-flow │ │ │ │ ├── classes.txt │ │ │ │ ├── test.txt │ │ │ │ └── trainval.txt │ │ │ ├── infer.py │ │ │ ├── nyud-fcn32s-color-d │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── nyud-fcn32s-color-hha │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── nyud-fcn32s-color │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── nyud-fcn32s-hha │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── nyud_layers.py │ │ │ ├── pascalcontext-fcn16s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── pascalcontext-fcn32s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── pascalcontext-fcn8s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── pascalcontext_layers.py │ │ │ ├── score.py │ │ │ ├── siftflow-fcn16s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── siftflow-fcn32s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── siftflow-fcn8s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── siftflow_layers.py │ │ │ ├── surgery.py │ │ │ ├── voc-fcn-alexnet │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── voc-fcn16s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── voc-fcn32s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── voc-fcn8s-atonce │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── voc-fcn8s │ │ │ ├── net.py │ │ │ └── solve.py │ │ │ ├── voc_helper.py │ │ │ └── voc_layers.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── deeplab_sourceonly.py │ │ ├── deeplab_sourceonly.pyc │ │ ├── fcn8s_LSD.py │ │ ├── fcn8s_LSD.pyc │ │ ├── fcn8s_sourceonly.py │ │ ├── fcn8s_sourceonly.pyc │ │ ├── model_utils.py │ │ ├── model_utils.pyc │ │ ├── vgg.py │ │ └── vgg.pyc │ ├── trainer_LSD.py │ ├── trainer_LSD.pyc │ ├── trainer_sourceonly.py │ ├── trainer_sourceonly.pyc │ ├── utils.py │ └── utils.pyc ├── train.py ├── util_fns.py └── util_fns.pyc └── data ├── cityscapes_info.json └── filelist ├── GTA5_imagelist_train.txt ├── GTA5_imagelist_train.txt.backup ├── GTA5_imagelist_val.txt ├── GTA5_labellist.txt ├── GTA5_labellist_train.txt ├── GTA5_labellist_val.txt ├── SYNTHIA_imagelist_train.txt ├── SYNTHIA_imagelist_val.txt ├── SYNTHIA_labellist_train.txt ├── SYNTHIA_labellist_val.txt ├── cityscapes_imagelist_train.txt ├── cityscapes_imagelist_val.txt ├── cityscapes_labellist_train.txt └── cityscapes_labellist_val.txt /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/README.md -------------------------------------------------------------------------------- /code/errata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/errata.txt -------------------------------------------------------------------------------- /code/eval_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/eval_cityscapes.py -------------------------------------------------------------------------------- /code/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/run.sh -------------------------------------------------------------------------------- /code/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/run_script.py -------------------------------------------------------------------------------- /code/torchfcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/__init__.py -------------------------------------------------------------------------------- /code/torchfcn/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/__init__.pyc -------------------------------------------------------------------------------- /code/torchfcn/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/datasets/__init__.py -------------------------------------------------------------------------------- /code/torchfcn/datasets/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/datasets/__init__.pyc -------------------------------------------------------------------------------- /code/torchfcn/datasets/segmentation_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/datasets/segmentation_datasets.py -------------------------------------------------------------------------------- /code/torchfcn/datasets/segmentation_datasets.py.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/datasets/segmentation_datasets.py.backup -------------------------------------------------------------------------------- /code/torchfcn/datasets/segmentation_datasets.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/datasets/segmentation_datasets.pyc -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/classes.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/test.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/train.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/nyud/val.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal-context/classes-400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal-context/classes-400.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal-context/classes-59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal-context/classes-59.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal/classes.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal/seg11valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/pascal/seg11valid.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/classes.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/test.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/trainval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/data/sift-flow/trainval.txt -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/infer.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-d/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-d/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-d/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-d/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-hha/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-hha/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-hha/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color-hha/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-color/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-hha/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-hha/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-hha/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud-fcn32s-hha/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/nyud_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/nyud_layers.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn16s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn16s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn16s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn16s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn32s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn32s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn32s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn32s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn8s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn8s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn8s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext-fcn8s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/pascalcontext_layers.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/score.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn16s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn16s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn16s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn16s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn32s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn32s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn32s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn32s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn8s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn8s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn8s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow-fcn8s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/siftflow_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/siftflow_layers.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/surgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/surgery.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn-alexnet/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn-alexnet/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn-alexnet/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn-alexnet/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn16s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn16s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn16s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn16s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn32s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn32s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn32s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn32s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s-atonce/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s-atonce/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s-atonce/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s-atonce/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s/net.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc-fcn8s/solve.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc_helper.py -------------------------------------------------------------------------------- /code/torchfcn/ext/fcn.berkeleyvision.org/voc_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/ext/fcn.berkeleyvision.org/voc_layers.py -------------------------------------------------------------------------------- /code/torchfcn/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/__init__.py -------------------------------------------------------------------------------- /code/torchfcn/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/__init__.pyc -------------------------------------------------------------------------------- /code/torchfcn/models/deeplab_sourceonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/deeplab_sourceonly.py -------------------------------------------------------------------------------- /code/torchfcn/models/deeplab_sourceonly.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/deeplab_sourceonly.pyc -------------------------------------------------------------------------------- /code/torchfcn/models/fcn8s_LSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/fcn8s_LSD.py -------------------------------------------------------------------------------- /code/torchfcn/models/fcn8s_LSD.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/fcn8s_LSD.pyc -------------------------------------------------------------------------------- /code/torchfcn/models/fcn8s_sourceonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/fcn8s_sourceonly.py -------------------------------------------------------------------------------- /code/torchfcn/models/fcn8s_sourceonly.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/fcn8s_sourceonly.pyc -------------------------------------------------------------------------------- /code/torchfcn/models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/model_utils.py -------------------------------------------------------------------------------- /code/torchfcn/models/model_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/model_utils.pyc -------------------------------------------------------------------------------- /code/torchfcn/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/vgg.py -------------------------------------------------------------------------------- /code/torchfcn/models/vgg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/models/vgg.pyc -------------------------------------------------------------------------------- /code/torchfcn/trainer_LSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/trainer_LSD.py -------------------------------------------------------------------------------- /code/torchfcn/trainer_LSD.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/trainer_LSD.pyc -------------------------------------------------------------------------------- /code/torchfcn/trainer_sourceonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/trainer_sourceonly.py -------------------------------------------------------------------------------- /code/torchfcn/trainer_sourceonly.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/trainer_sourceonly.pyc -------------------------------------------------------------------------------- /code/torchfcn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/utils.py -------------------------------------------------------------------------------- /code/torchfcn/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/torchfcn/utils.pyc -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/train.py -------------------------------------------------------------------------------- /code/util_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/util_fns.py -------------------------------------------------------------------------------- /code/util_fns.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/code/util_fns.pyc -------------------------------------------------------------------------------- /data/cityscapes_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/cityscapes_info.json -------------------------------------------------------------------------------- /data/filelist/GTA5_imagelist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_imagelist_train.txt -------------------------------------------------------------------------------- /data/filelist/GTA5_imagelist_train.txt.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_imagelist_train.txt.backup -------------------------------------------------------------------------------- /data/filelist/GTA5_imagelist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_imagelist_val.txt -------------------------------------------------------------------------------- /data/filelist/GTA5_labellist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_labellist.txt -------------------------------------------------------------------------------- /data/filelist/GTA5_labellist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_labellist_train.txt -------------------------------------------------------------------------------- /data/filelist/GTA5_labellist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/GTA5_labellist_val.txt -------------------------------------------------------------------------------- /data/filelist/SYNTHIA_imagelist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/SYNTHIA_imagelist_train.txt -------------------------------------------------------------------------------- /data/filelist/SYNTHIA_imagelist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/SYNTHIA_imagelist_val.txt -------------------------------------------------------------------------------- /data/filelist/SYNTHIA_labellist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/SYNTHIA_labellist_train.txt -------------------------------------------------------------------------------- /data/filelist/SYNTHIA_labellist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/SYNTHIA_labellist_val.txt -------------------------------------------------------------------------------- /data/filelist/cityscapes_imagelist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/cityscapes_imagelist_train.txt -------------------------------------------------------------------------------- /data/filelist/cityscapes_imagelist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/cityscapes_imagelist_val.txt -------------------------------------------------------------------------------- /data/filelist/cityscapes_labellist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/cityscapes_labellist_train.txt -------------------------------------------------------------------------------- /data/filelist/cityscapes_labellist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swamiviv/LSD-seg/HEAD/data/filelist/cityscapes_labellist_val.txt --------------------------------------------------------------------------------