├── .gitignore ├── LICENSE ├── README.md ├── data_manager.py ├── dataset_loader.py ├── eval_metrics.py ├── framework.png ├── losses.py ├── models ├── DenseNet.py ├── Inception.py ├── ResNeXt.py ├── ResNet.py ├── Xception.py └── __init__.py ├── optimizers.py ├── plot-salience-parsing-results.py ├── re_ranking_ranklist.py ├── samplers.py ├── test_two_nets_img.py ├── train_img_model_xent.py ├── train_img_model_xent_htri.py ├── transforms.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/README.md -------------------------------------------------------------------------------- /data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/data_manager.py -------------------------------------------------------------------------------- /dataset_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/dataset_loader.py -------------------------------------------------------------------------------- /eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/eval_metrics.py -------------------------------------------------------------------------------- /framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/framework.png -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/losses.py -------------------------------------------------------------------------------- /models/DenseNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/DenseNet.py -------------------------------------------------------------------------------- /models/Inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/Inception.py -------------------------------------------------------------------------------- /models/ResNeXt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/ResNeXt.py -------------------------------------------------------------------------------- /models/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/ResNet.py -------------------------------------------------------------------------------- /models/Xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/Xception.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/models/__init__.py -------------------------------------------------------------------------------- /optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/optimizers.py -------------------------------------------------------------------------------- /plot-salience-parsing-results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/plot-salience-parsing-results.py -------------------------------------------------------------------------------- /re_ranking_ranklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/re_ranking_ranklist.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/samplers.py -------------------------------------------------------------------------------- /test_two_nets_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/test_two_nets_img.py -------------------------------------------------------------------------------- /train_img_model_xent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/train_img_model_xent.py -------------------------------------------------------------------------------- /train_img_model_xent_htri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/train_img_model_xent_htri.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RQuispeC/saliency-semantic-parsing-reid/HEAD/utils.py --------------------------------------------------------------------------------