├── README.md ├── configs ├── Base-AGW.yml ├── Base-bagtricks.yml ├── DukeMTMC │ ├── AGW_R50.yml │ └── bagtricks_R50.yml └── Market1501 │ ├── AGW_R50.yml │ └── bagtricks_R50.yml ├── duke_sct.txt ├── fastreid ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ └── defaults.cpython-38.pyc │ ├── config.py │ └── defaults.py ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-38.pyc │ │ ├── common.cpython-38.pyc │ │ └── data_utils.cpython-38.pyc │ ├── build.py │ ├── common.py │ ├── data_utils.py │ ├── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bases.cpython-38.pyc │ │ │ ├── dukemtmcreid.cpython-38.pyc │ │ │ └── market1501.cpython-38.pyc │ │ ├── bases.py │ │ ├── dukemtmcreid.py │ │ └── market1501.py │ ├── samplers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── data_sampler.cpython-38.pyc │ │ │ └── triplet_sampler.cpython-38.pyc │ │ ├── data_sampler.py │ │ └── triplet_sampler.py │ └── transforms │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── autoaugment.cpython-38.pyc │ │ ├── build.cpython-38.pyc │ │ ├── functional.cpython-38.pyc │ │ └── transforms.cpython-38.pyc │ │ ├── autoaugment.py │ │ ├── build.py │ │ ├── functional.py │ │ └── transforms.py ├── engine │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── defaults.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── launch.cpython-38.pyc │ │ └── train_loop.cpython-38.pyc │ ├── defaults.py │ ├── hooks.py │ ├── launch.py │ └── train_loop.py ├── evaluation │ ├── __init__.py │ ├── evaluator.py │ ├── query_expansion.py │ ├── rank.py │ ├── rank_cylib │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ ├── rank_cy.c │ │ ├── rank_cy.cpython-38-x86_64-linux-gnu.so │ │ ├── rank_cy.pyx │ │ ├── roc_cy.c │ │ ├── roc_cy.cpython-38-x86_64-linux-gnu.so │ │ ├── roc_cy.pyx │ │ ├── setup.py │ │ └── test_cython.py │ ├── reid_evaluation.py │ ├── rerank.py │ ├── roc.py │ └── testing.py ├── layers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── activation.cpython-38.pyc │ │ ├── batch_norm.cpython-38.pyc │ │ ├── non_local.cpython-38.pyc │ │ └── pooling.cpython-38.pyc │ ├── activation.py │ ├── batch_norm.py │ ├── non_local.py │ └── pooling.py ├── modeling │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── backbones │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── build.cpython-38.pyc │ │ │ └── resnet.cpython-38.pyc │ │ ├── build.py │ │ └── resnet.py │ ├── heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── build.cpython-38.pyc │ │ │ └── embedding_head.cpython-38.pyc │ │ ├── build.py │ │ └── embedding_head.py │ ├── losses │ │ ├── CaCE.py │ │ ├── GSL.py │ │ ├── LSL.py │ │ ├── MCNL.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── CaCE.cpython-38.pyc │ │ │ ├── GSL.cpython-38.pyc │ │ │ ├── LSL.cpython-38.pyc │ │ │ ├── MCNL.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── ftr.cpython-38.pyc │ │ └── utils.py │ ├── meta_arch │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── baseline.cpython-38.pyc │ │ │ └── build.cpython-38.pyc │ │ ├── baseline.py │ │ └── build.py │ └── self_module │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── positional_encoder.cpython-38.pyc │ │ └── transformer.cpython-38.pyc │ │ ├── positional_encoder.py │ │ └── transformer.py ├── solver │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-38.pyc │ │ └── lr_scheduler.cpython-38.pyc │ ├── build.py │ ├── lr_scheduler.py │ └── optim │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── lamb.cpython-38.pyc │ │ └── swa.cpython-38.pyc │ │ ├── lamb.py │ │ └── swa.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── checkpoint.cpython-38.pyc │ ├── collect_env.cpython-38.pyc │ ├── comm.cpython-38.pyc │ ├── compute_dist.cpython-37.pyc │ ├── compute_dist.cpython-38.pyc │ ├── env.cpython-38.pyc │ ├── events.cpython-38.pyc │ ├── faiss_utils.cpython-38.pyc │ ├── file_io.cpython-38.pyc │ ├── history_buffer.cpython-38.pyc │ ├── logger.cpython-38.pyc │ ├── misc.cpython-38.pyc │ ├── my_tools.cpython-38.pyc │ ├── precision_bn.cpython-38.pyc │ ├── registry.cpython-38.pyc │ ├── timer.cpython-38.pyc │ └── weight_init.cpython-38.pyc │ ├── checkpoint.py │ ├── collect_env.py │ ├── comm.py │ ├── compute_dist.py │ ├── env.py │ ├── events.py │ ├── faiss_utils.py │ ├── file_io.py │ ├── history_buffer.py │ ├── logger.py │ ├── misc.py │ ├── my_tools.py │ ├── precision_bn.py │ ├── registry.py │ ├── summary.py │ ├── timer.py │ ├── visualizer.py │ └── weight_init.py ├── market_sct.txt ├── msmt_sct.txt ├── results.png ├── run.sh ├── run_d.sh ├── tests ├── __init__.py ├── dataset_test.py ├── feature_align.py ├── interp_test.py ├── lr_scheduler_test.py ├── model_test.py └── sampler_test.py └── tools ├── deploy ├── Caffe │ ├── ReadMe.md │ ├── caffe.proto │ ├── caffe_lmdb.py │ ├── caffe_net.py │ ├── caffe_pb2.py │ ├── layer_param.py │ └── net.py ├── README.md ├── caffe_export.py ├── caffe_inference.py ├── onnx_export.py ├── onnx_inference.py ├── pytorch_to_caffe.py ├── run_export.sh ├── trt_export.py └── trt_inference.py ├── plain_train_net.py └── train_net.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/README.md -------------------------------------------------------------------------------- /configs/Base-AGW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/Base-AGW.yml -------------------------------------------------------------------------------- /configs/Base-bagtricks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/Base-bagtricks.yml -------------------------------------------------------------------------------- /configs/DukeMTMC/AGW_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/DukeMTMC/AGW_R50.yml -------------------------------------------------------------------------------- /configs/DukeMTMC/bagtricks_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/DukeMTMC/bagtricks_R50.yml -------------------------------------------------------------------------------- /configs/Market1501/AGW_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/Market1501/AGW_R50.yml -------------------------------------------------------------------------------- /configs/Market1501/bagtricks_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/configs/Market1501/bagtricks_R50.yml -------------------------------------------------------------------------------- /duke_sct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/duke_sct.txt -------------------------------------------------------------------------------- /fastreid/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/__init__.py -------------------------------------------------------------------------------- /fastreid/config/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/config/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/config/__pycache__/defaults.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/__pycache__/defaults.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/config.py -------------------------------------------------------------------------------- /fastreid/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/config/defaults.py -------------------------------------------------------------------------------- /fastreid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/__init__.py -------------------------------------------------------------------------------- /fastreid/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/__pycache__/data_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/__pycache__/data_utils.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/build.py -------------------------------------------------------------------------------- /fastreid/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/common.py -------------------------------------------------------------------------------- /fastreid/data/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/data_utils.py -------------------------------------------------------------------------------- /fastreid/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/__init__.py -------------------------------------------------------------------------------- /fastreid/data/datasets/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/datasets/__pycache__/bases.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/__pycache__/bases.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/datasets/__pycache__/dukemtmcreid.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/__pycache__/dukemtmcreid.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/datasets/__pycache__/market1501.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/__pycache__/market1501.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/datasets/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/bases.py -------------------------------------------------------------------------------- /fastreid/data/datasets/dukemtmcreid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/dukemtmcreid.py -------------------------------------------------------------------------------- /fastreid/data/datasets/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/datasets/market1501.py -------------------------------------------------------------------------------- /fastreid/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/__init__.py -------------------------------------------------------------------------------- /fastreid/data/samplers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/samplers/__pycache__/data_sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/__pycache__/data_sampler.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/samplers/__pycache__/triplet_sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/__pycache__/triplet_sampler.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/samplers/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/data_sampler.py -------------------------------------------------------------------------------- /fastreid/data/samplers/triplet_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/samplers/triplet_sampler.py -------------------------------------------------------------------------------- /fastreid/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__init__.py -------------------------------------------------------------------------------- /fastreid/data/transforms/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/transforms/__pycache__/autoaugment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__pycache__/autoaugment.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/transforms/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/transforms/__pycache__/functional.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__pycache__/functional.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/transforms/__pycache__/transforms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/__pycache__/transforms.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/data/transforms/autoaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/autoaugment.py -------------------------------------------------------------------------------- /fastreid/data/transforms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/build.py -------------------------------------------------------------------------------- /fastreid/data/transforms/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/functional.py -------------------------------------------------------------------------------- /fastreid/data/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/data/transforms/transforms.py -------------------------------------------------------------------------------- /fastreid/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__init__.py -------------------------------------------------------------------------------- /fastreid/engine/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/engine/__pycache__/defaults.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__pycache__/defaults.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/engine/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/engine/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/engine/__pycache__/train_loop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/__pycache__/train_loop.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/defaults.py -------------------------------------------------------------------------------- /fastreid/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/hooks.py -------------------------------------------------------------------------------- /fastreid/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/launch.py -------------------------------------------------------------------------------- /fastreid/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/engine/train_loop.py -------------------------------------------------------------------------------- /fastreid/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/__init__.py -------------------------------------------------------------------------------- /fastreid/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/evaluator.py -------------------------------------------------------------------------------- /fastreid/evaluation/query_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/query_expansion.py -------------------------------------------------------------------------------- /fastreid/evaluation/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank.py -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/Makefile -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/__init__.py -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/rank_cy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/rank_cy.c -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/rank_cy.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/rank_cy.cpython-38-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/rank_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/rank_cy.pyx -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/roc_cy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/roc_cy.c -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/roc_cy.cpython-38-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/roc_cy.cpython-38-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/roc_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/roc_cy.pyx -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/setup.py -------------------------------------------------------------------------------- /fastreid/evaluation/rank_cylib/test_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rank_cylib/test_cython.py -------------------------------------------------------------------------------- /fastreid/evaluation/reid_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/reid_evaluation.py -------------------------------------------------------------------------------- /fastreid/evaluation/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/rerank.py -------------------------------------------------------------------------------- /fastreid/evaluation/roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/roc.py -------------------------------------------------------------------------------- /fastreid/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/evaluation/testing.py -------------------------------------------------------------------------------- /fastreid/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__init__.py -------------------------------------------------------------------------------- /fastreid/layers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/layers/__pycache__/activation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__pycache__/activation.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/layers/__pycache__/batch_norm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__pycache__/batch_norm.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/layers/__pycache__/non_local.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__pycache__/non_local.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/layers/__pycache__/pooling.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/__pycache__/pooling.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/layers/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/activation.py -------------------------------------------------------------------------------- /fastreid/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/batch_norm.py -------------------------------------------------------------------------------- /fastreid/layers/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/non_local.py -------------------------------------------------------------------------------- /fastreid/layers/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/layers/pooling.py -------------------------------------------------------------------------------- /fastreid/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/backbones/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/backbones/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/backbones/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/backbones/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/build.py -------------------------------------------------------------------------------- /fastreid/modeling/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/backbones/resnet.py -------------------------------------------------------------------------------- /fastreid/modeling/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/heads/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/heads/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/heads/__pycache__/embedding_head.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/__pycache__/embedding_head.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/heads/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/build.py -------------------------------------------------------------------------------- /fastreid/modeling/heads/embedding_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/heads/embedding_head.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/CaCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/CaCE.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/GSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/GSL.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/LSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/LSL.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/MCNL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/MCNL.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/CaCE.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/CaCE.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/GSL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/GSL.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/LSL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/LSL.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/MCNL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/MCNL.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/__pycache__/ftr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/__pycache__/ftr.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/losses/utils.py -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/__pycache__/baseline.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/__pycache__/baseline.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/baseline.py -------------------------------------------------------------------------------- /fastreid/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /fastreid/modeling/self_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/__init__.py -------------------------------------------------------------------------------- /fastreid/modeling/self_module/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/self_module/__pycache__/positional_encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/__pycache__/positional_encoder.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/self_module/__pycache__/transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/__pycache__/transformer.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/modeling/self_module/positional_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/positional_encoder.py -------------------------------------------------------------------------------- /fastreid/modeling/self_module/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/modeling/self_module/transformer.py -------------------------------------------------------------------------------- /fastreid/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/__init__.py -------------------------------------------------------------------------------- /fastreid/solver/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/__pycache__/lr_scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/__pycache__/lr_scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/build.py -------------------------------------------------------------------------------- /fastreid/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/lr_scheduler.py -------------------------------------------------------------------------------- /fastreid/solver/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/__init__.py -------------------------------------------------------------------------------- /fastreid/solver/optim/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/optim/__pycache__/lamb.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/__pycache__/lamb.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/optim/__pycache__/swa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/__pycache__/swa.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/solver/optim/lamb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/lamb.py -------------------------------------------------------------------------------- /fastreid/solver/optim/swa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/solver/optim/swa.py -------------------------------------------------------------------------------- /fastreid/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__init__.py -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/checkpoint.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/checkpoint.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/collect_env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/collect_env.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/comm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/comm.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/compute_dist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/compute_dist.cpython-37.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/compute_dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/compute_dist.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/env.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/events.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/events.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/faiss_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/faiss_utils.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/file_io.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/file_io.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/history_buffer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/history_buffer.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/logger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/logger.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/my_tools.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/my_tools.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/precision_bn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/precision_bn.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/registry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/registry.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/timer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/timer.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/__pycache__/weight_init.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/__pycache__/weight_init.cpython-38.pyc -------------------------------------------------------------------------------- /fastreid/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/checkpoint.py -------------------------------------------------------------------------------- /fastreid/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/collect_env.py -------------------------------------------------------------------------------- /fastreid/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/comm.py -------------------------------------------------------------------------------- /fastreid/utils/compute_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/compute_dist.py -------------------------------------------------------------------------------- /fastreid/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/env.py -------------------------------------------------------------------------------- /fastreid/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/events.py -------------------------------------------------------------------------------- /fastreid/utils/faiss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/faiss_utils.py -------------------------------------------------------------------------------- /fastreid/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/file_io.py -------------------------------------------------------------------------------- /fastreid/utils/history_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/history_buffer.py -------------------------------------------------------------------------------- /fastreid/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/logger.py -------------------------------------------------------------------------------- /fastreid/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/misc.py -------------------------------------------------------------------------------- /fastreid/utils/my_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/my_tools.py -------------------------------------------------------------------------------- /fastreid/utils/precision_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/precision_bn.py -------------------------------------------------------------------------------- /fastreid/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/registry.py -------------------------------------------------------------------------------- /fastreid/utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/summary.py -------------------------------------------------------------------------------- /fastreid/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/timer.py -------------------------------------------------------------------------------- /fastreid/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/visualizer.py -------------------------------------------------------------------------------- /fastreid/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/fastreid/utils/weight_init.py -------------------------------------------------------------------------------- /market_sct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/market_sct.txt -------------------------------------------------------------------------------- /msmt_sct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/msmt_sct.txt -------------------------------------------------------------------------------- /results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/results.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/run.sh -------------------------------------------------------------------------------- /run_d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/run_d.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/dataset_test.py -------------------------------------------------------------------------------- /tests/feature_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/feature_align.py -------------------------------------------------------------------------------- /tests/interp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/interp_test.py -------------------------------------------------------------------------------- /tests/lr_scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/lr_scheduler_test.py -------------------------------------------------------------------------------- /tests/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/model_test.py -------------------------------------------------------------------------------- /tests/sampler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tests/sampler_test.py -------------------------------------------------------------------------------- /tools/deploy/Caffe/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/ReadMe.md -------------------------------------------------------------------------------- /tools/deploy/Caffe/caffe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/caffe.proto -------------------------------------------------------------------------------- /tools/deploy/Caffe/caffe_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/caffe_lmdb.py -------------------------------------------------------------------------------- /tools/deploy/Caffe/caffe_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/caffe_net.py -------------------------------------------------------------------------------- /tools/deploy/Caffe/caffe_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/caffe_pb2.py -------------------------------------------------------------------------------- /tools/deploy/Caffe/layer_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/layer_param.py -------------------------------------------------------------------------------- /tools/deploy/Caffe/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/Caffe/net.py -------------------------------------------------------------------------------- /tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/README.md -------------------------------------------------------------------------------- /tools/deploy/caffe_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/caffe_export.py -------------------------------------------------------------------------------- /tools/deploy/caffe_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/caffe_inference.py -------------------------------------------------------------------------------- /tools/deploy/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/onnx_export.py -------------------------------------------------------------------------------- /tools/deploy/onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/onnx_inference.py -------------------------------------------------------------------------------- /tools/deploy/pytorch_to_caffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/pytorch_to_caffe.py -------------------------------------------------------------------------------- /tools/deploy/run_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/run_export.sh -------------------------------------------------------------------------------- /tools/deploy/trt_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/trt_export.py -------------------------------------------------------------------------------- /tools/deploy/trt_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/deploy/trt_inference.py -------------------------------------------------------------------------------- /tools/plain_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/plain_train_net.py -------------------------------------------------------------------------------- /tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g3956/CCFP/HEAD/tools/train_net.py --------------------------------------------------------------------------------