├── .idea ├── PGAN-VehicleRe-ID.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── Test-vehicleid.sh ├── Test-veri.sh ├── Test-veriwild.sh ├── Test-vric.sh ├── Train-vehicleid.sh ├── Train-veri.sh ├── Train-veriwild.sh ├── Train-vric.sh ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── defaults.cpython-36.pyc │ └── defaults.cpython-37.pyc └── defaults.py ├── configs ├── softmax_triplet_vehicleid.yml ├── softmax_triplet_veri.yml ├── softmax_triplet_veriwild.yml └── softmax_triplet_vric.yml ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── build.cpython-36.pyc │ ├── build.cpython-37.pyc │ ├── collate_batch.cpython-36.pyc │ └── collate_batch.cpython-37.pyc ├── build.py ├── collate_batch.py ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── bases.cpython-36.pyc │ │ ├── bases.cpython-37.pyc │ │ ├── cityflow.cpython-36.pyc │ │ ├── cuhk03.cpython-36.pyc │ │ ├── cuhk03.cpython-37.pyc │ │ ├── dataset_loader.cpython-36.pyc │ │ ├── dataset_loader.cpython-37.pyc │ │ ├── dukemtmcreid.cpython-36.pyc │ │ ├── dukemtmcreid.cpython-37.pyc │ │ ├── eval_reid.cpython-36.pyc │ │ ├── eval_reid.cpython-37.pyc │ │ ├── market1501.cpython-36.pyc │ │ ├── market1501.cpython-37.pyc │ │ ├── msmt17.cpython-36.pyc │ │ ├── msmt17.cpython-37.pyc │ │ ├── utils.cpython-36.pyc │ │ ├── utils.cpython-37.pyc │ │ ├── vehicleid.cpython-36.pyc │ │ ├── vehicleid.cpython-37.pyc │ │ ├── veri.cpython-36.pyc │ │ ├── veri.cpython-37.pyc │ │ ├── veriwild.cpython-36.pyc │ │ ├── vric.cpython-36.pyc │ │ └── vric.cpython-37.pyc │ ├── bases.py │ ├── dataset_loader.py │ ├── eval_reid.py │ ├── utils.py │ ├── vehicleid.py │ ├── veri.py │ ├── veriwild.py │ └── vric.py ├── samplers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── triplet_sampler.cpython-36.pyc │ │ └── triplet_sampler.cpython-37.pyc │ └── triplet_sampler.py └── transforms │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── build.cpython-36.pyc │ ├── build.cpython-37.pyc │ ├── transforms.cpython-36.pyc │ ├── transforms.cpython-37.pyc │ ├── transforms_mask.cpython-36.pyc │ └── transforms_mask.cpython-37.pyc │ ├── build.py │ ├── transforms.py │ └── transforms_mask.py ├── engine ├── __pycache__ │ ├── inference.cpython-36.pyc │ ├── inference_feat_dist.cpython-36.pyc │ ├── trainer.cpython-36.pyc │ └── trainer.cpython-37.pyc ├── inference.py └── trainer.py ├── imgs └── pipeline.png ├── layers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── center_loss.cpython-36.pyc │ ├── center_loss.cpython-37.pyc │ ├── cluster_loss.cpython-36.pyc │ ├── cluster_loss.cpython-37.pyc │ ├── range_loss.cpython-36.pyc │ ├── range_loss.cpython-37.pyc │ ├── triplet_loss.cpython-36.pyc │ └── triplet_loss.cpython-37.pyc ├── center_loss.py ├── cluster_loss.py ├── range_loss.py └── triplet_loss.py ├── modeling ├── BasicBottleneck.py ├── __init__.py ├── __pycache__ │ ├── BasicBottleneck.cpython-36.pyc │ ├── BasicBottleneck.cpython-37.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── attention.cpython-36.pyc │ ├── attention.cpython-37.pyc │ ├── baseline.cpython-36.pyc │ ├── baseline.cpython-37.pyc │ ├── fc.cpython-36.pyc │ └── fc.cpython-37.pyc ├── attention.py ├── backbones │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── googlenet.cpython-36.pyc │ │ ├── resnet.cpython-36.pyc │ │ ├── resnet.cpython-37.pyc │ │ ├── senet.cpython-36.pyc │ │ └── senet.cpython-37.pyc │ └── resnet.py └── baseline.py ├── requirements.txt ├── solver ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── build.cpython-36.pyc │ ├── build.cpython-37.pyc │ ├── lr_scheduler.cpython-36.pyc │ └── lr_scheduler.cpython-37.pyc ├── build.py └── lr_scheduler.py ├── tests ├── __init__.py └── lr_scheduler_test.py ├── tools ├── test.py └── train.py └── utils ├── __pycache__ ├── __init__.cpython-36.pyc ├── __init__.cpython-37.pyc ├── checkpointer.cpython-36.pyc ├── iotools.cpython-36.pyc ├── iotools.cpython-37.pyc ├── logger.cpython-36.pyc ├── logger.cpython-37.pyc ├── re_ranking.cpython-36.pyc ├── re_ranking.cpython-37.pyc ├── reid_metric.cpython-36.pyc ├── reid_metric.cpython-37.pyc ├── torch_distance.cpython-36.pyc └── torch_distance.cpython-37.pyc ├── checkpointer.py ├── iotools.py ├── logger.py ├── np_distance.py ├── re_ranking.py ├── reid_metric.py └── torch_distance.py /.idea/PGAN-VehicleRe-ID.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/.idea/PGAN-VehicleRe-ID.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/README.md -------------------------------------------------------------------------------- /Test-vehicleid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Test-vehicleid.sh -------------------------------------------------------------------------------- /Test-veri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Test-veri.sh -------------------------------------------------------------------------------- /Test-veriwild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Test-veriwild.sh -------------------------------------------------------------------------------- /Test-vric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Test-vric.sh -------------------------------------------------------------------------------- /Train-vehicleid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Train-vehicleid.sh -------------------------------------------------------------------------------- /Train-veri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Train-veri.sh -------------------------------------------------------------------------------- /Train-veriwild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Train-veriwild.sh -------------------------------------------------------------------------------- /Train-vric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/Train-vric.sh -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /config/__pycache__/defaults.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/__pycache__/defaults.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/defaults.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/__pycache__/defaults.cpython-37.pyc -------------------------------------------------------------------------------- /config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/config/defaults.py -------------------------------------------------------------------------------- /configs/softmax_triplet_vehicleid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/configs/softmax_triplet_vehicleid.yml -------------------------------------------------------------------------------- /configs/softmax_triplet_veri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/configs/softmax_triplet_veri.yml -------------------------------------------------------------------------------- /configs/softmax_triplet_veriwild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/configs/softmax_triplet_veriwild.yml -------------------------------------------------------------------------------- /configs/softmax_triplet_vric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/configs/softmax_triplet_vric.yml -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/collate_batch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/collate_batch.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/collate_batch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/__pycache__/collate_batch.cpython-37.pyc -------------------------------------------------------------------------------- /data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/build.py -------------------------------------------------------------------------------- /data/collate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/collate_batch.py -------------------------------------------------------------------------------- /data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__init__.py -------------------------------------------------------------------------------- /data/datasets/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/bases.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/bases.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/bases.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/bases.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/cityflow.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/cityflow.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/cuhk03.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/cuhk03.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/cuhk03.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/cuhk03.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/dataset_loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/dataset_loader.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/dataset_loader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/dataset_loader.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/dukemtmcreid.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/dukemtmcreid.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/dukemtmcreid.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/dukemtmcreid.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/eval_reid.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/eval_reid.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/eval_reid.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/eval_reid.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/market1501.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/market1501.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/market1501.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/market1501.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/msmt17.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/msmt17.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/msmt17.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/msmt17.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/vehicleid.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/vehicleid.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/vehicleid.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/vehicleid.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/veri.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/veri.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/veri.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/veri.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/veriwild.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/veriwild.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/vric.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/vric.cpython-36.pyc -------------------------------------------------------------------------------- /data/datasets/__pycache__/vric.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/__pycache__/vric.cpython-37.pyc -------------------------------------------------------------------------------- /data/datasets/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/bases.py -------------------------------------------------------------------------------- /data/datasets/dataset_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/dataset_loader.py -------------------------------------------------------------------------------- /data/datasets/eval_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/eval_reid.py -------------------------------------------------------------------------------- /data/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/utils.py -------------------------------------------------------------------------------- /data/datasets/vehicleid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/vehicleid.py -------------------------------------------------------------------------------- /data/datasets/veri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/veri.py -------------------------------------------------------------------------------- /data/datasets/veriwild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/veriwild.py -------------------------------------------------------------------------------- /data/datasets/vric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/datasets/vric.py -------------------------------------------------------------------------------- /data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/__init__.py -------------------------------------------------------------------------------- /data/samplers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/samplers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/samplers/__pycache__/triplet_sampler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/__pycache__/triplet_sampler.cpython-36.pyc -------------------------------------------------------------------------------- /data/samplers/__pycache__/triplet_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/__pycache__/triplet_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /data/samplers/triplet_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/samplers/triplet_sampler.py -------------------------------------------------------------------------------- /data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__init__.py -------------------------------------------------------------------------------- /data/transforms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/transforms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/transforms.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/transforms_mask.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/transforms_mask.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/transforms_mask.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/__pycache__/transforms_mask.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/build.py -------------------------------------------------------------------------------- /data/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/transforms.py -------------------------------------------------------------------------------- /data/transforms/transforms_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/data/transforms/transforms_mask.py -------------------------------------------------------------------------------- /engine/__pycache__/inference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/__pycache__/inference.cpython-36.pyc -------------------------------------------------------------------------------- /engine/__pycache__/inference_feat_dist.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/__pycache__/inference_feat_dist.cpython-36.pyc -------------------------------------------------------------------------------- /engine/__pycache__/trainer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/__pycache__/trainer.cpython-36.pyc -------------------------------------------------------------------------------- /engine/__pycache__/trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/__pycache__/trainer.cpython-37.pyc -------------------------------------------------------------------------------- /engine/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/inference.py -------------------------------------------------------------------------------- /engine/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/engine/trainer.py -------------------------------------------------------------------------------- /imgs/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/imgs/pipeline.png -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/__pycache__/center_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/center_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/center_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/center_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/__pycache__/cluster_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/cluster_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/cluster_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/cluster_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/__pycache__/range_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/range_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/range_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/range_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/__pycache__/triplet_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/triplet_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/triplet_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/__pycache__/triplet_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/center_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/center_loss.py -------------------------------------------------------------------------------- /layers/cluster_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/cluster_loss.py -------------------------------------------------------------------------------- /layers/range_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/range_loss.py -------------------------------------------------------------------------------- /layers/triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/layers/triplet_loss.py -------------------------------------------------------------------------------- /modeling/BasicBottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/BasicBottleneck.py -------------------------------------------------------------------------------- /modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__init__.py -------------------------------------------------------------------------------- /modeling/__pycache__/BasicBottleneck.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/BasicBottleneck.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/BasicBottleneck.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/BasicBottleneck.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/attention.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/attention.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/attention.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/baseline.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/baseline.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/baseline.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/baseline.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/fc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/fc.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/__pycache__/fc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/__pycache__/fc.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/attention.py -------------------------------------------------------------------------------- /modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/googlenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/googlenet.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/senet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/senet.cpython-36.pyc -------------------------------------------------------------------------------- /modeling/backbones/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /modeling/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/backbones/resnet.py -------------------------------------------------------------------------------- /modeling/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/modeling/baseline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/requirements.txt -------------------------------------------------------------------------------- /solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__init__.py -------------------------------------------------------------------------------- /solver/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /solver/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /solver/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /solver/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /solver/__pycache__/lr_scheduler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/lr_scheduler.cpython-36.pyc -------------------------------------------------------------------------------- /solver/__pycache__/lr_scheduler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/__pycache__/lr_scheduler.cpython-37.pyc -------------------------------------------------------------------------------- /solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/build.py -------------------------------------------------------------------------------- /solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/solver/lr_scheduler.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/lr_scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/tests/lr_scheduler_test.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/tools/train.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/checkpointer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/checkpointer.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/iotools.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/iotools.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/iotools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/iotools.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/logger.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/re_ranking.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/re_ranking.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/re_ranking.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/re_ranking.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/reid_metric.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/reid_metric.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/reid_metric.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/reid_metric.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_distance.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/torch_distance.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_distance.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/__pycache__/torch_distance.cpython-37.pyc -------------------------------------------------------------------------------- /utils/checkpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/checkpointer.py -------------------------------------------------------------------------------- /utils/iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/iotools.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/np_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/np_distance.py -------------------------------------------------------------------------------- /utils/re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/re_ranking.py -------------------------------------------------------------------------------- /utils/reid_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/reid_metric.py -------------------------------------------------------------------------------- /utils/torch_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxinyu-xyz/PGAN-VehicleRe-ID/HEAD/utils/torch_distance.py --------------------------------------------------------------------------------