├── LICENSE ├── PS-HRNet.ipynb ├── README.md ├── README ├── fig.png └── result.png ├── apex └── apex.md ├── cls_hrnet_w32_sgd_lr5e-2_wd1e-4_bs32_x100.yaml ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── default.cpython-36.pyc │ ├── default.cpython-37.pyc │ ├── models.cpython-36.pyc │ └── models.cpython-37.pyc ├── default.py └── models.py ├── data_loader.py ├── data_loader_v2.py ├── dataset.py ├── dataset_v2.py ├── double_samplers.py ├── lr_scheduler.py ├── prepare.py ├── random_erasing.py ├── re_ranking.py └── triplet_loss.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/LICENSE -------------------------------------------------------------------------------- /PS-HRNet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/PS-HRNet.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/README.md -------------------------------------------------------------------------------- /README/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/README/fig.png -------------------------------------------------------------------------------- /README/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/README/result.png -------------------------------------------------------------------------------- /apex/apex.md: -------------------------------------------------------------------------------- 1 | https://github.com/NVIDIA/apex.git -------------------------------------------------------------------------------- /cls_hrnet_w32_sgd_lr5e-2_wd1e-4_bs32_x100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/cls_hrnet_w32_sgd_lr5e-2_wd1e-4_bs32_x100.yaml -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /config/__pycache__/default.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/default.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/default.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/default.cpython-37.pyc -------------------------------------------------------------------------------- /config/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/default.py -------------------------------------------------------------------------------- /config/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/config/models.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/data_loader.py -------------------------------------------------------------------------------- /data_loader_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/data_loader_v2.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/dataset.py -------------------------------------------------------------------------------- /dataset_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/dataset_v2.py -------------------------------------------------------------------------------- /double_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/double_samplers.py -------------------------------------------------------------------------------- /lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/lr_scheduler.py -------------------------------------------------------------------------------- /prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/prepare.py -------------------------------------------------------------------------------- /random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/random_erasing.py -------------------------------------------------------------------------------- /re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/re_ranking.py -------------------------------------------------------------------------------- /triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NUISTGY/Deep-High-Resolution-Representation-Learning-for-Cross-Resolution-Person-Re-identification/HEAD/triplet_loss.py --------------------------------------------------------------------------------