├── .idea └── vcs.xml ├── README.md ├── config └── config.py ├── data ├── __init__.py ├── common.py ├── market1501.py └── sampler.py ├── doc ├── archiecture.png └── preprocess_and_postprocess.png ├── export_pb.py ├── export_pb_with_pre_post_process.py ├── export_tf_serving_model.py ├── export_tf_serving_with_pre_post.py ├── market_eval.py ├── market_eval_pre_post.py ├── model ├── __init__.py ├── mgn.py ├── resnet_utils.py └── resnet_v1.py ├── tensor_name ├── fianl_tf_name_v2.txt └── final_pt_name.txt ├── test.py ├── train.py └── utils ├── __init__.py └── eval_utils.py /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/README.md -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/config/config.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/data/common.py -------------------------------------------------------------------------------- /data/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/data/market1501.py -------------------------------------------------------------------------------- /data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/data/sampler.py -------------------------------------------------------------------------------- /doc/archiecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/doc/archiecture.png -------------------------------------------------------------------------------- /doc/preprocess_and_postprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/doc/preprocess_and_postprocess.png -------------------------------------------------------------------------------- /export_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/export_pb.py -------------------------------------------------------------------------------- /export_pb_with_pre_post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/export_pb_with_pre_post_process.py -------------------------------------------------------------------------------- /export_tf_serving_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/export_tf_serving_model.py -------------------------------------------------------------------------------- /export_tf_serving_with_pre_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/export_tf_serving_with_pre_post.py -------------------------------------------------------------------------------- /market_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/market_eval.py -------------------------------------------------------------------------------- /market_eval_pre_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/market_eval_pre_post.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/mgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/model/mgn.py -------------------------------------------------------------------------------- /model/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/model/resnet_utils.py -------------------------------------------------------------------------------- /model/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/model/resnet_v1.py -------------------------------------------------------------------------------- /tensor_name/fianl_tf_name_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/tensor_name/fianl_tf_name_v2.txt -------------------------------------------------------------------------------- /tensor_name/final_pt_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/tensor_name/final_pt_name.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joehammer934/MGN-ReId/HEAD/utils/eval_utils.py --------------------------------------------------------------------------------