├── README.md ├── data ├── __init__.py ├── common.py ├── market1501.py └── sampler.py ├── demo.sh ├── loss ├── __init__.py └── triplet.py ├── main.py ├── model ├── __init__.py └── mgn.py ├── option.py ├── requirements.txt ├── trainer.py └── utils ├── functions.py ├── n_adam.py ├── nadam.py ├── random_erasing.py ├── re_ranking.py └── utility.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/data/common.py -------------------------------------------------------------------------------- /data/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/data/market1501.py -------------------------------------------------------------------------------- /data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/data/sampler.py -------------------------------------------------------------------------------- /demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/demo.sh -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/loss/__init__.py -------------------------------------------------------------------------------- /loss/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/loss/triplet.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/mgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/model/mgn.py -------------------------------------------------------------------------------- /option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/option.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/trainer.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/n_adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/n_adam.py -------------------------------------------------------------------------------- /utils/nadam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/nadam.py -------------------------------------------------------------------------------- /utils/random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/random_erasing.py -------------------------------------------------------------------------------- /utils/re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/re_ranking.py -------------------------------------------------------------------------------- /utils/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seathiefwang/MGN-pytorch/HEAD/utils/utility.py --------------------------------------------------------------------------------