├── README.md ├── config ├── __init__.py └── defaults.py ├── configs └── softmax_triplet.yml ├── data_manager.py ├── eval_metrics.py ├── losses.py ├── lr_schedulers.py ├── main_baseline.py ├── models ├── __init__.py ├── __pycache__ │ ├── DenseNet.cpython-35.pyc │ ├── MuDeep.cpython-35.pyc │ └── __init__.cpython-35.pyc ├── backbones │ ├── __init__.py │ ├── resnet.py │ ├── resnet_ibn_a.py │ └── senet.py ├── baseline.py └── net │ ├── models.py │ └── resnet.py ├── re_ranking.py ├── samplers.py ├── transforms.py ├── utils.py └── video_loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/config/defaults.py -------------------------------------------------------------------------------- /configs/softmax_triplet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/configs/softmax_triplet.yml -------------------------------------------------------------------------------- /data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/data_manager.py -------------------------------------------------------------------------------- /eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/eval_metrics.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/losses.py -------------------------------------------------------------------------------- /lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/lr_schedulers.py -------------------------------------------------------------------------------- /main_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/main_baseline.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/DenseNet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/__pycache__/DenseNet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/MuDeep.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/__pycache__/MuDeep.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/backbones/__init__.py -------------------------------------------------------------------------------- /models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/backbones/resnet.py -------------------------------------------------------------------------------- /models/backbones/resnet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/backbones/resnet_ibn_a.py -------------------------------------------------------------------------------- /models/backbones/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/backbones/senet.py -------------------------------------------------------------------------------- /models/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/baseline.py -------------------------------------------------------------------------------- /models/net/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/net/models.py -------------------------------------------------------------------------------- /models/net/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/models/net/resnet.py -------------------------------------------------------------------------------- /re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/re_ranking.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/samplers.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/utils.py -------------------------------------------------------------------------------- /video_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuange250/not_so_strong_baseline_for_video_based_person_reID/HEAD/video_loader.py --------------------------------------------------------------------------------