├── .gitignore ├── README.md ├── check.sh ├── data ├── debug.txt ├── reid.data └── test_debug.txt ├── dataset ├── __init__.py ├── dataset.py ├── huaijin.jpg ├── person-1.jpg └── transforms.py ├── module ├── TripletLoss.py ├── __init__.py ├── l2normalize.py └── symbols.py ├── tools ├── __init__.py ├── test.py ├── train.py └── utils.py └── train_val.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/check.sh -------------------------------------------------------------------------------- /data/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/data/debug.txt -------------------------------------------------------------------------------- /data/reid.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/data/reid.data -------------------------------------------------------------------------------- /data/test_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/data/test_debug.txt -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/dataset/dataset.py -------------------------------------------------------------------------------- /dataset/huaijin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/dataset/huaijin.jpg -------------------------------------------------------------------------------- /dataset/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/dataset/person-1.jpg -------------------------------------------------------------------------------- /dataset/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/dataset/transforms.py -------------------------------------------------------------------------------- /module/TripletLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/module/TripletLoss.py -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/module/__init__.py -------------------------------------------------------------------------------- /module/l2normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/module/l2normalize.py -------------------------------------------------------------------------------- /module/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/module/symbols.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/tools/utils.py -------------------------------------------------------------------------------- /train_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huaijin-chen/pytorch-PersonReID/HEAD/train_val.py --------------------------------------------------------------------------------