├── .gitignore ├── LICENSE ├── README.md ├── backbone.py ├── balanced_sampler.py ├── evaluate.py ├── get_market1501.sh ├── loss.py ├── market1501.py ├── random_erasing.py ├── sft.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/README.md -------------------------------------------------------------------------------- /backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/backbone.py -------------------------------------------------------------------------------- /balanced_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/balanced_sampler.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/evaluate.py -------------------------------------------------------------------------------- /get_market1501.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/get_market1501.sh -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/loss.py -------------------------------------------------------------------------------- /market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/market1501.py -------------------------------------------------------------------------------- /random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/random_erasing.py -------------------------------------------------------------------------------- /sft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/sft.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinCheung/SFT-ReID/HEAD/train.py --------------------------------------------------------------------------------