├── README.md ├── __init__.py ├── config ├── __init__.py └── defaults.py ├── configs └── softmax_triplet_tlaw.yml ├── data_manager.py ├── defaults.py ├── display_images ├── pic.png ├── pic1.png ├── pic2.png ├── pic3.png └── pic4.png ├── eval_metrics.py ├── losses.py ├── lr_schedulers.py ├── main_baseline.py ├── models ├── __init__.py ├── backbones │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── resnet.cpython-36.pyc │ │ ├── resnet_ibn_a.cpython-36.pyc │ │ └── senet.cpython-36.pyc │ ├── resnet.py │ ├── resnet_ibn_a.py │ └── senet.py └── baseline.py ├── re_ranking.py ├── samplers.py ├── transforms.py ├── utils.py └── video_loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/__init__.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/config/defaults.py -------------------------------------------------------------------------------- /configs/softmax_triplet_tlaw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/configs/softmax_triplet_tlaw.yml -------------------------------------------------------------------------------- /data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/data_manager.py -------------------------------------------------------------------------------- /defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/defaults.py -------------------------------------------------------------------------------- /display_images/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/display_images/pic.png -------------------------------------------------------------------------------- /display_images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/display_images/pic1.png -------------------------------------------------------------------------------- /display_images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/display_images/pic2.png -------------------------------------------------------------------------------- /display_images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/display_images/pic3.png -------------------------------------------------------------------------------- /display_images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/display_images/pic4.png -------------------------------------------------------------------------------- /eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/eval_metrics.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/losses.py -------------------------------------------------------------------------------- /lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/lr_schedulers.py -------------------------------------------------------------------------------- /main_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/main_baseline.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/__init__.py -------------------------------------------------------------------------------- /models/backbones/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/backbones/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/backbones/__pycache__/resnet_ibn_a.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/__pycache__/resnet_ibn_a.cpython-36.pyc -------------------------------------------------------------------------------- /models/backbones/__pycache__/senet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/__pycache__/senet.cpython-36.pyc -------------------------------------------------------------------------------- /models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/resnet.py -------------------------------------------------------------------------------- /models/backbones/resnet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/resnet_ibn_a.py -------------------------------------------------------------------------------- /models/backbones/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/backbones/senet.py -------------------------------------------------------------------------------- /models/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/models/baseline.py -------------------------------------------------------------------------------- /re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/re_ranking.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/samplers.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/utils.py -------------------------------------------------------------------------------- /video_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/Video-based-person-ReID-with-Attribute-information/HEAD/video_loader.py --------------------------------------------------------------------------------