├── README.md ├── architecture.png ├── award.jpg ├── ckpt_weight └── .gitkeep ├── dataset ├── test │ └── .gitkeep ├── train │ └── .gitkeep └── val │ └── .gitkeep ├── detection ├── LICENSE ├── README.md ├── get_detection.py ├── utils │ ├── __pycache__ │ │ ├── timer.cpython-310.pyc │ │ ├── timer.cpython-312.pyc │ │ └── timer.cpython-38.pyc │ ├── timer.py │ └── trt.py └── yolox │ ├── _C.cpython-37m-x86_64-linux-gnu.so │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-312.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc │ ├── core │ ├── __init__.py │ ├── launch.py │ └── trainer.py │ ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── data_augment.cpython-312.pyc │ │ ├── data_augment.cpython-37.pyc │ │ ├── data_augment.cpython-38.pyc │ │ ├── data_prefetcher.cpython-312.pyc │ │ ├── data_prefetcher.cpython-37.pyc │ │ ├── data_prefetcher.cpython-38.pyc │ │ ├── dataloading.cpython-312.pyc │ │ ├── dataloading.cpython-37.pyc │ │ ├── dataloading.cpython-38.pyc │ │ ├── samplers.cpython-312.pyc │ │ ├── samplers.cpython-37.pyc │ │ └── samplers.cpython-38.pyc │ ├── data_augment.py │ ├── data_prefetcher.py │ ├── dataloading.py │ ├── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── datasets_wrapper.cpython-312.pyc │ │ │ ├── datasets_wrapper.cpython-37.pyc │ │ │ ├── datasets_wrapper.cpython-38.pyc │ │ │ ├── mosaicdetection.cpython-312.pyc │ │ │ ├── mosaicdetection.cpython-37.pyc │ │ │ ├── mosaicdetection.cpython-38.pyc │ │ │ ├── mot.cpython-312.pyc │ │ │ ├── mot.cpython-37.pyc │ │ │ └── mot.cpython-38.pyc │ │ ├── datasets_wrapper.py │ │ ├── mosaicdetection.py │ │ └── mot.py │ └── samplers.py │ ├── evaluators │ ├── __init__.py │ ├── coco_evaluator.py │ ├── evaluation.py │ └── mot_evaluator.py │ ├── exp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── base_exp.cpython-310.pyc │ │ ├── base_exp.cpython-312.pyc │ │ ├── base_exp.cpython-37.pyc │ │ ├── base_exp.cpython-38.pyc │ │ ├── build.cpython-310.pyc │ │ ├── build.cpython-312.pyc │ │ ├── build.cpython-37.pyc │ │ ├── build.cpython-38.pyc │ │ ├── yolox_base.cpython-310.pyc │ │ ├── yolox_base.cpython-312.pyc │ │ ├── yolox_base.cpython-37.pyc │ │ └── yolox_base.cpython-38.pyc │ ├── base_exp.py │ ├── build.py │ └── yolox_base.py │ ├── exps │ ├── default │ │ ├── nano.py │ │ ├── yolov3.py │ │ ├── yolox_l.py │ │ ├── yolox_m.py │ │ ├── yolox_s.py │ │ ├── yolox_tiny.py │ │ └── yolox_x.py │ └── example │ │ └── mot │ │ ├── __pycache__ │ │ ├── yolox_x_mix_det.cpython-312.pyc │ │ ├── yolox_x_mix_det.cpython-37.pyc │ │ └── yolox_x_mix_det.cpython-38.pyc │ │ ├── yolox_l_mix_det.py │ │ ├── yolox_m_mix_det.py │ │ ├── yolox_nano_mix_det.py │ │ ├── yolox_s_mix_det.py │ │ ├── yolox_tiny_mix_det.py │ │ ├── yolox_x_ablation.py │ │ ├── yolox_x_ch.py │ │ ├── yolox_x_mix_det.py │ │ ├── yolox_x_mix_mot20_ch.py │ │ └── yolox_x_mot17_half.py │ ├── layers │ ├── __init__.py │ ├── csrc │ │ ├── cocoeval │ │ │ ├── cocoeval.cpp │ │ │ └── cocoeval.h │ │ └── vision.cpp │ └── fast_coco_eval_api.py │ ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── darknet.cpython-312.pyc │ │ ├── darknet.cpython-37.pyc │ │ ├── darknet.cpython-38.pyc │ │ ├── losses.cpython-312.pyc │ │ ├── losses.cpython-37.pyc │ │ ├── losses.cpython-38.pyc │ │ ├── network_blocks.cpython-312.pyc │ │ ├── network_blocks.cpython-37.pyc │ │ ├── network_blocks.cpython-38.pyc │ │ ├── yolo_fpn.cpython-312.pyc │ │ ├── yolo_fpn.cpython-37.pyc │ │ ├── yolo_fpn.cpython-38.pyc │ │ ├── yolo_head.cpython-312.pyc │ │ ├── yolo_head.cpython-37.pyc │ │ ├── yolo_head.cpython-38.pyc │ │ ├── yolo_pafpn.cpython-312.pyc │ │ ├── yolo_pafpn.cpython-37.pyc │ │ ├── yolo_pafpn.cpython-38.pyc │ │ ├── yolox.cpython-312.pyc │ │ ├── yolox.cpython-37.pyc │ │ └── yolox.cpython-38.pyc │ ├── darknet.py │ ├── losses.py │ ├── network_blocks.py │ ├── yolo_fpn.py │ ├── yolo_head.py │ ├── yolo_pafpn.py │ └── yolox.py │ ├── train.py │ └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-312.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── allreduce_norm.cpython-310.pyc │ ├── allreduce_norm.cpython-312.pyc │ ├── allreduce_norm.cpython-37.pyc │ ├── allreduce_norm.cpython-38.pyc │ ├── boxes.cpython-310.pyc │ ├── boxes.cpython-312.pyc │ ├── boxes.cpython-37.pyc │ ├── boxes.cpython-38.pyc │ ├── checkpoint.cpython-310.pyc │ ├── checkpoint.cpython-312.pyc │ ├── checkpoint.cpython-37.pyc │ ├── checkpoint.cpython-38.pyc │ ├── demo_utils.cpython-310.pyc │ ├── demo_utils.cpython-312.pyc │ ├── demo_utils.cpython-37.pyc │ ├── demo_utils.cpython-38.pyc │ ├── dist.cpython-310.pyc │ ├── dist.cpython-312.pyc │ ├── dist.cpython-37.pyc │ ├── dist.cpython-38.pyc │ ├── ema.cpython-310.pyc │ ├── ema.cpython-312.pyc │ ├── ema.cpython-37.pyc │ ├── ema.cpython-38.pyc │ ├── logger.cpython-310.pyc │ ├── logger.cpython-312.pyc │ ├── logger.cpython-37.pyc │ ├── logger.cpython-38.pyc │ ├── lr_scheduler.cpython-310.pyc │ ├── lr_scheduler.cpython-312.pyc │ ├── lr_scheduler.cpython-37.pyc │ ├── lr_scheduler.cpython-38.pyc │ ├── metric.cpython-310.pyc │ ├── metric.cpython-312.pyc │ ├── metric.cpython-37.pyc │ ├── metric.cpython-38.pyc │ ├── model_utils.cpython-310.pyc │ ├── model_utils.cpython-312.pyc │ ├── model_utils.cpython-37.pyc │ ├── model_utils.cpython-38.pyc │ ├── setup_env.cpython-310.pyc │ ├── setup_env.cpython-312.pyc │ ├── setup_env.cpython-37.pyc │ ├── setup_env.cpython-38.pyc │ ├── visualize.cpython-310.pyc │ ├── visualize.cpython-312.pyc │ ├── visualize.cpython-37.pyc │ └── visualize.cpython-38.pyc │ ├── allreduce_norm.py │ ├── boxes.py │ ├── checkpoint.py │ ├── demo_utils.py │ ├── dist.py │ ├── ema.py │ ├── logger.py │ ├── lr_scheduler.py │ ├── metric.py │ ├── model_utils.py │ ├── setup_env.py │ └── visualize.py ├── fast-reid ├── CHANGELOG.md ├── GETTING_STARTED.md ├── INSTALL.md ├── LICENSE ├── MODEL_ZOO.md ├── README.md ├── configs │ ├── AIC24 │ │ ├── mgn_R101-ibn.yml │ │ ├── mgn_R101.yml │ │ └── mgn_R101_reprod.yml │ ├── Base-AGW.yml │ ├── Base-MGN.yml │ ├── Base-MGN_reprod.yml │ ├── Base-SBS.yml │ ├── Base-bagtricks.yml │ ├── Challenge │ │ ├── mgn_R101-ibn.yml │ │ ├── mgn_R101.yml │ │ ├── mgn_R50.yml │ │ └── sbs_R101-ibn.yml │ ├── DukeMTMC │ │ ├── AGW_R101-ibn.yml │ │ ├── AGW_R50-ibn.yml │ │ ├── AGW_R50.yml │ │ ├── AGW_S50.yml │ │ ├── bagtricks_R101-ibn.yml │ │ ├── bagtricks_R50-ibn.yml │ │ ├── bagtricks_R50.yml │ │ ├── bagtricks_S50.yml │ │ ├── mgn_R50-ibn.yml │ │ ├── sbs_R101-ibn.yml │ │ ├── sbs_R50-ibn.yml │ │ ├── sbs_R50.yml │ │ └── sbs_S50.yml │ ├── MSMT17 │ │ ├── AGW_R101-ibn.yml │ │ ├── AGW_R50-ibn.yml │ │ ├── AGW_R50.yml │ │ ├── AGW_S50.yml │ │ ├── bagtricks_R101-ibn.yml │ │ ├── bagtricks_R50-ibn.yml │ │ ├── bagtricks_R50.yml │ │ ├── bagtricks_S50.yml │ │ ├── mgn_R50-ibn.yml │ │ ├── sbs_R101-ibn.yml │ │ ├── sbs_R50-ibn.yml │ │ ├── sbs_R50.yml │ │ └── sbs_S50.yml │ ├── Market1501 │ │ ├── AGW_R101-ibn.yml │ │ ├── AGW_R50-ibn.yml │ │ ├── AGW_R50.yml │ │ ├── AGW_S50.yml │ │ ├── bagtricks_R101-ibn.yml │ │ ├── bagtricks_R50-ibn.yml │ │ ├── bagtricks_R50.yml │ │ ├── bagtricks_S50.yml │ │ ├── bagtricks_vit.yml │ │ ├── mgn_R50-ibn.yml │ │ ├── sbs_R101-ibn.yml │ │ ├── sbs_R50-ibn.yml │ │ ├── sbs_R50.yml │ │ └── sbs_S50.yml │ ├── VERIWild │ │ └── bagtricks_R50-ibn.yml │ ├── VeRi │ │ └── sbs_R50-ibn.yml │ └── VehicleID │ │ └── bagtricks_R50-ibn.yml ├── demo │ ├── README.md │ ├── demo.py │ ├── plot_roc_with_pickle.py │ ├── predictor.py │ └── visualize_result.py ├── docker │ ├── Dockerfile │ └── README.md ├── docs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── _static │ │ └── css │ │ │ └── custom.css │ ├── conf.py │ ├── index.rst │ ├── modules │ │ ├── checkpoint.rst │ │ ├── config.rst │ │ ├── data.rst │ │ ├── data_transforms.rst │ │ ├── engine.rst │ │ ├── evaluation.rst │ │ ├── index.rst │ │ ├── layers.rst │ │ ├── modeling.rst │ │ ├── solver.rst │ │ └── utils.rst │ └── requirements.txt ├── fastreid │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc │ ├── config │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ ├── config.cpython-37.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── defaults.cpython-310.pyc │ │ │ ├── defaults.cpython-37.pyc │ │ │ └── defaults.cpython-39.pyc │ │ ├── config.py │ │ └── defaults.py │ ├── data │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── build.cpython-310.pyc │ │ │ ├── build.cpython-37.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── common.cpython-310.pyc │ │ │ ├── common.cpython-37.pyc │ │ │ ├── common.cpython-39.pyc │ │ │ ├── data_utils.cpython-310.pyc │ │ │ ├── data_utils.cpython-37.pyc │ │ │ └── data_utils.cpython-39.pyc │ │ ├── build.py │ │ ├── common.py │ │ ├── data_utils.py │ │ ├── datasets │ │ │ ├── AirportALERT.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── AirportALERT.cpython-310.pyc │ │ │ │ ├── AirportALERT.cpython-37.pyc │ │ │ │ ├── AirportALERT.cpython-39.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── aic24.cpython-310.pyc │ │ │ │ ├── aic24.cpython-37.pyc │ │ │ │ ├── aic24.cpython-39.pyc │ │ │ │ ├── bases.cpython-310.pyc │ │ │ │ ├── bases.cpython-37.pyc │ │ │ │ ├── bases.cpython-39.pyc │ │ │ │ ├── caviara.cpython-310.pyc │ │ │ │ ├── caviara.cpython-37.pyc │ │ │ │ ├── caviara.cpython-39.pyc │ │ │ │ ├── cuhk03.cpython-310.pyc │ │ │ │ ├── cuhk03.cpython-37.pyc │ │ │ │ ├── cuhk03.cpython-39.pyc │ │ │ │ ├── cuhk_sysu.cpython-310.pyc │ │ │ │ ├── cuhk_sysu.cpython-37.pyc │ │ │ │ ├── cuhk_sysu.cpython-39.pyc │ │ │ │ ├── dukemtmcreid.cpython-310.pyc │ │ │ │ ├── dukemtmcreid.cpython-37.pyc │ │ │ │ ├── dukemtmcreid.cpython-39.pyc │ │ │ │ ├── grid.cpython-310.pyc │ │ │ │ ├── grid.cpython-37.pyc │ │ │ │ ├── grid.cpython-39.pyc │ │ │ │ ├── iLIDS.cpython-310.pyc │ │ │ │ ├── iLIDS.cpython-37.pyc │ │ │ │ ├── iLIDS.cpython-39.pyc │ │ │ │ ├── lpw.cpython-310.pyc │ │ │ │ ├── lpw.cpython-37.pyc │ │ │ │ ├── lpw.cpython-39.pyc │ │ │ │ ├── market1501.cpython-310.pyc │ │ │ │ ├── market1501.cpython-37.pyc │ │ │ │ ├── market1501.cpython-39.pyc │ │ │ │ ├── msmt17.cpython-310.pyc │ │ │ │ ├── msmt17.cpython-37.pyc │ │ │ │ ├── msmt17.cpython-39.pyc │ │ │ │ ├── pes3d.cpython-310.pyc │ │ │ │ ├── pes3d.cpython-37.pyc │ │ │ │ ├── pes3d.cpython-39.pyc │ │ │ │ ├── pku.cpython-310.pyc │ │ │ │ ├── pku.cpython-37.pyc │ │ │ │ ├── pku.cpython-39.pyc │ │ │ │ ├── prai.cpython-310.pyc │ │ │ │ ├── prai.cpython-37.pyc │ │ │ │ ├── prai.cpython-39.pyc │ │ │ │ ├── prid.cpython-310.pyc │ │ │ │ ├── prid.cpython-37.pyc │ │ │ │ ├── prid.cpython-39.pyc │ │ │ │ ├── saivt.cpython-310.pyc │ │ │ │ ├── saivt.cpython-37.pyc │ │ │ │ ├── saivt.cpython-39.pyc │ │ │ │ ├── sensereid.cpython-310.pyc │ │ │ │ ├── sensereid.cpython-37.pyc │ │ │ │ ├── sensereid.cpython-39.pyc │ │ │ │ ├── shinpuhkan.cpython-310.pyc │ │ │ │ ├── shinpuhkan.cpython-37.pyc │ │ │ │ ├── shinpuhkan.cpython-39.pyc │ │ │ │ ├── sysu_mm.cpython-310.pyc │ │ │ │ ├── sysu_mm.cpython-37.pyc │ │ │ │ ├── sysu_mm.cpython-39.pyc │ │ │ │ ├── thermalworld.cpython-310.pyc │ │ │ │ ├── thermalworld.cpython-37.pyc │ │ │ │ ├── thermalworld.cpython-39.pyc │ │ │ │ ├── vehicleid.cpython-310.pyc │ │ │ │ ├── vehicleid.cpython-37.pyc │ │ │ │ ├── vehicleid.cpython-39.pyc │ │ │ │ ├── veri.cpython-310.pyc │ │ │ │ ├── veri.cpython-37.pyc │ │ │ │ ├── veri.cpython-39.pyc │ │ │ │ ├── veriwild.cpython-310.pyc │ │ │ │ ├── veriwild.cpython-37.pyc │ │ │ │ ├── veriwild.cpython-39.pyc │ │ │ │ ├── viper.cpython-310.pyc │ │ │ │ ├── viper.cpython-37.pyc │ │ │ │ ├── viper.cpython-39.pyc │ │ │ │ ├── wildtracker.cpython-310.pyc │ │ │ │ ├── wildtracker.cpython-37.pyc │ │ │ │ └── wildtracker.cpython-39.pyc │ │ │ ├── aic24.py │ │ │ ├── bases.py │ │ │ ├── caviara.py │ │ │ ├── cuhk03.py │ │ │ ├── cuhk_sysu.py │ │ │ ├── dukemtmcreid.py │ │ │ ├── grid.py │ │ │ ├── iLIDS.py │ │ │ ├── lpw.py │ │ │ ├── market1501.py │ │ │ ├── msmt17.py │ │ │ ├── pes3d.py │ │ │ ├── pku.py │ │ │ ├── prai.py │ │ │ ├── prid.py │ │ │ ├── saivt.py │ │ │ ├── sensereid.py │ │ │ ├── shinpuhkan.py │ │ │ ├── sysu_mm.py │ │ │ ├── thermalworld.py │ │ │ ├── vehicleid.py │ │ │ ├── veri.py │ │ │ ├── veriwild.py │ │ │ ├── viper.py │ │ │ └── wildtracker.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── data_sampler.cpython-310.pyc │ │ │ │ ├── data_sampler.cpython-37.pyc │ │ │ │ ├── data_sampler.cpython-39.pyc │ │ │ │ ├── imbalance_sampler.cpython-310.pyc │ │ │ │ ├── imbalance_sampler.cpython-37.pyc │ │ │ │ ├── imbalance_sampler.cpython-39.pyc │ │ │ │ ├── triplet_sampler.cpython-310.pyc │ │ │ │ ├── triplet_sampler.cpython-37.pyc │ │ │ │ └── triplet_sampler.cpython-39.pyc │ │ │ ├── data_sampler.py │ │ │ ├── imbalance_sampler.py │ │ │ └── triplet_sampler.py │ │ └── transforms │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── autoaugment.cpython-310.pyc │ │ │ ├── autoaugment.cpython-37.pyc │ │ │ ├── autoaugment.cpython-39.pyc │ │ │ ├── build.cpython-310.pyc │ │ │ ├── build.cpython-37.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── functional.cpython-310.pyc │ │ │ ├── functional.cpython-37.pyc │ │ │ ├── functional.cpython-39.pyc │ │ │ ├── transforms.cpython-310.pyc │ │ │ ├── transforms.cpython-37.pyc │ │ │ └── transforms.cpython-39.pyc │ │ │ ├── autoaugment.py │ │ │ ├── build.py │ │ │ ├── functional.py │ │ │ └── transforms.py │ ├── engine │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── defaults.cpython-310.pyc │ │ │ ├── defaults.cpython-37.pyc │ │ │ ├── defaults.cpython-39.pyc │ │ │ ├── hooks.cpython-310.pyc │ │ │ ├── hooks.cpython-37.pyc │ │ │ ├── hooks.cpython-39.pyc │ │ │ ├── launch.cpython-310.pyc │ │ │ ├── launch.cpython-37.pyc │ │ │ ├── launch.cpython-39.pyc │ │ │ ├── train_loop.cpython-310.pyc │ │ │ ├── train_loop.cpython-37.pyc │ │ │ └── train_loop.cpython-39.pyc │ │ ├── defaults.py │ │ ├── hooks.py │ │ ├── launch.py │ │ └── train_loop.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── clas_evaluator.cpython-310.pyc │ │ │ ├── clas_evaluator.cpython-37.pyc │ │ │ ├── clas_evaluator.cpython-39.pyc │ │ │ ├── evaluator.cpython-310.pyc │ │ │ ├── evaluator.cpython-37.pyc │ │ │ ├── evaluator.cpython-39.pyc │ │ │ ├── query_expansion.cpython-310.pyc │ │ │ ├── query_expansion.cpython-37.pyc │ │ │ ├── query_expansion.cpython-39.pyc │ │ │ ├── rank.cpython-310.pyc │ │ │ ├── rank.cpython-37.pyc │ │ │ ├── rank.cpython-39.pyc │ │ │ ├── reid_evaluation.cpython-310.pyc │ │ │ ├── reid_evaluation.cpython-37.pyc │ │ │ ├── reid_evaluation.cpython-39.pyc │ │ │ ├── testing.cpython-310.pyc │ │ │ ├── testing.cpython-37.pyc │ │ │ └── testing.cpython-39.pyc │ │ ├── clas_evaluator.py │ │ ├── evaluator.py │ │ ├── query_expansion.py │ │ ├── rank.py │ │ ├── rank_cylib │ │ │ ├── Makefile │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── rank_cy.c │ │ │ ├── rank_cy.cpython-310-x86_64-linux-gnu.so │ │ │ ├── rank_cy.cpython-37m-x86_64-linux-gnu.so │ │ │ ├── rank_cy.cpython-39-x86_64-linux-gnu.so │ │ │ ├── rank_cy.pyx │ │ │ ├── roc_cy.c │ │ │ ├── roc_cy.cpython-310-x86_64-linux-gnu.so │ │ │ ├── roc_cy.cpython-37m-x86_64-linux-gnu.so │ │ │ ├── roc_cy.cpython-39-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-310.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── activation.cpython-310.pyc │ │ │ ├── activation.cpython-312.pyc │ │ │ ├── activation.cpython-37.pyc │ │ │ ├── activation.cpython-39.pyc │ │ │ ├── any_softmax.cpython-310.pyc │ │ │ ├── any_softmax.cpython-37.pyc │ │ │ ├── any_softmax.cpython-39.pyc │ │ │ ├── batch_norm.cpython-310.pyc │ │ │ ├── batch_norm.cpython-312.pyc │ │ │ ├── batch_norm.cpython-37.pyc │ │ │ ├── batch_norm.cpython-39.pyc │ │ │ ├── context_block.cpython-310.pyc │ │ │ ├── context_block.cpython-312.pyc │ │ │ ├── context_block.cpython-37.pyc │ │ │ ├── context_block.cpython-39.pyc │ │ │ ├── drop.cpython-310.pyc │ │ │ ├── drop.cpython-312.pyc │ │ │ ├── drop.cpython-37.pyc │ │ │ ├── drop.cpython-39.pyc │ │ │ ├── frn.cpython-310.pyc │ │ │ ├── frn.cpython-312.pyc │ │ │ ├── frn.cpython-37.pyc │ │ │ ├── frn.cpython-39.pyc │ │ │ ├── gather_layer.cpython-310.pyc │ │ │ ├── gather_layer.cpython-312.pyc │ │ │ ├── gather_layer.cpython-37.pyc │ │ │ ├── gather_layer.cpython-39.pyc │ │ │ ├── helpers.cpython-310.pyc │ │ │ ├── helpers.cpython-312.pyc │ │ │ ├── helpers.cpython-37.pyc │ │ │ ├── helpers.cpython-39.pyc │ │ │ ├── non_local.cpython-310.pyc │ │ │ ├── non_local.cpython-312.pyc │ │ │ ├── non_local.cpython-37.pyc │ │ │ ├── non_local.cpython-39.pyc │ │ │ ├── pooling.cpython-310.pyc │ │ │ ├── pooling.cpython-37.pyc │ │ │ ├── pooling.cpython-39.pyc │ │ │ ├── se_layer.cpython-310.pyc │ │ │ ├── se_layer.cpython-312.pyc │ │ │ ├── se_layer.cpython-37.pyc │ │ │ ├── se_layer.cpython-39.pyc │ │ │ ├── splat.cpython-310.pyc │ │ │ ├── splat.cpython-312.pyc │ │ │ ├── splat.cpython-37.pyc │ │ │ ├── splat.cpython-39.pyc │ │ │ ├── weight_init.cpython-310.pyc │ │ │ ├── weight_init.cpython-312.pyc │ │ │ ├── weight_init.cpython-37.pyc │ │ │ └── weight_init.cpython-39.pyc │ │ ├── activation.py │ │ ├── any_softmax.py │ │ ├── batch_norm.py │ │ ├── context_block.py │ │ ├── drop.py │ │ ├── frn.py │ │ ├── gather_layer.py │ │ ├── helpers.py │ │ ├── non_local.py │ │ ├── pooling.py │ │ ├── se_layer.py │ │ ├── splat.py │ │ └── weight_init.py │ ├── modeling │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __init__.cpython-39.pyc │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ ├── build.cpython-312.pyc │ │ │ │ ├── build.cpython-37.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── mobilenet.cpython-310.pyc │ │ │ │ ├── mobilenet.cpython-37.pyc │ │ │ │ ├── mobilenet.cpython-39.pyc │ │ │ │ ├── mobilenetv3.cpython-310.pyc │ │ │ │ ├── mobilenetv3.cpython-37.pyc │ │ │ │ ├── mobilenetv3.cpython-39.pyc │ │ │ │ ├── osnet.cpython-310.pyc │ │ │ │ ├── osnet.cpython-312.pyc │ │ │ │ ├── osnet.cpython-37.pyc │ │ │ │ ├── osnet.cpython-39.pyc │ │ │ │ ├── repvgg.cpython-310.pyc │ │ │ │ ├── repvgg.cpython-37.pyc │ │ │ │ ├── repvgg.cpython-39.pyc │ │ │ │ ├── resnest.cpython-310.pyc │ │ │ │ ├── resnest.cpython-312.pyc │ │ │ │ ├── resnest.cpython-37.pyc │ │ │ │ ├── resnest.cpython-39.pyc │ │ │ │ ├── resnet.cpython-310.pyc │ │ │ │ ├── resnet.cpython-312.pyc │ │ │ │ ├── resnet.cpython-37.pyc │ │ │ │ ├── resnet.cpython-39.pyc │ │ │ │ ├── resnext.cpython-310.pyc │ │ │ │ ├── resnext.cpython-312.pyc │ │ │ │ ├── resnext.cpython-37.pyc │ │ │ │ ├── resnext.cpython-39.pyc │ │ │ │ ├── shufflenet.cpython-310.pyc │ │ │ │ ├── shufflenet.cpython-37.pyc │ │ │ │ ├── shufflenet.cpython-39.pyc │ │ │ │ ├── vision_transformer.cpython-310.pyc │ │ │ │ ├── vision_transformer.cpython-37.pyc │ │ │ │ └── vision_transformer.cpython-39.pyc │ │ │ ├── build.py │ │ │ ├── mixstyle.py │ │ │ ├── mobilenet.py │ │ │ ├── mobilenetv3.py │ │ │ ├── osnet.py │ │ │ ├── regnet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── config.cpython-310.pyc │ │ │ │ │ ├── config.cpython-312.pyc │ │ │ │ │ ├── config.cpython-37.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── effnet.cpython-310.pyc │ │ │ │ │ ├── effnet.cpython-37.pyc │ │ │ │ │ ├── effnet.cpython-39.pyc │ │ │ │ │ ├── regnet.cpython-310.pyc │ │ │ │ │ ├── regnet.cpython-312.pyc │ │ │ │ │ ├── regnet.cpython-37.pyc │ │ │ │ │ └── regnet.cpython-39.pyc │ │ │ │ ├── config.py │ │ │ │ ├── effnet.py │ │ │ │ ├── effnet │ │ │ │ │ ├── EN-B0_dds_8gpu.yaml │ │ │ │ │ ├── EN-B1_dds_8gpu.yaml │ │ │ │ │ ├── EN-B2_dds_8gpu.yaml │ │ │ │ │ ├── EN-B3_dds_8gpu.yaml │ │ │ │ │ ├── EN-B4_dds_8gpu.yaml │ │ │ │ │ └── EN-B5_dds_8gpu.yaml │ │ │ │ ├── regnet.py │ │ │ │ ├── regnetx │ │ │ │ │ ├── RegNetX-1.6GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-12GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-16GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-200MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-3.2GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-32GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-4.0GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-400MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-6.4GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-600MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetX-8.0GF_dds_8gpu.yaml │ │ │ │ │ └── RegNetX-800MF_dds_8gpu.yaml │ │ │ │ └── regnety │ │ │ │ │ ├── RegNetY-1.6GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-12GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-16GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-200MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-3.2GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-32GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-4.0GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-400MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-6.4GF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-600MF_dds_8gpu.yaml │ │ │ │ │ ├── RegNetY-8.0GF_dds_8gpu.yaml │ │ │ │ │ └── RegNetY-800MF_dds_8gpu.yaml │ │ │ ├── repvgg.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnext.py │ │ │ ├── shufflenet.py │ │ │ └── vision_transformer.py │ │ ├── heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ ├── build.cpython-37.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── clas_head.cpython-310.pyc │ │ │ │ ├── clas_head.cpython-37.pyc │ │ │ │ ├── clas_head.cpython-39.pyc │ │ │ │ ├── embedding_head.cpython-310.pyc │ │ │ │ ├── embedding_head.cpython-37.pyc │ │ │ │ └── embedding_head.cpython-39.pyc │ │ │ ├── build.py │ │ │ ├── clas_head.py │ │ │ └── embedding_head.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── circle_loss.cpython-310.pyc │ │ │ │ ├── circle_loss.cpython-312.pyc │ │ │ │ ├── circle_loss.cpython-37.pyc │ │ │ │ ├── circle_loss.cpython-39.pyc │ │ │ │ ├── cross_entroy_loss.cpython-310.pyc │ │ │ │ ├── cross_entroy_loss.cpython-312.pyc │ │ │ │ ├── cross_entroy_loss.cpython-37.pyc │ │ │ │ ├── cross_entroy_loss.cpython-39.pyc │ │ │ │ ├── focal_loss.cpython-310.pyc │ │ │ │ ├── focal_loss.cpython-312.pyc │ │ │ │ ├── focal_loss.cpython-37.pyc │ │ │ │ ├── focal_loss.cpython-39.pyc │ │ │ │ ├── triplet_loss.cpython-310.pyc │ │ │ │ ├── triplet_loss.cpython-312.pyc │ │ │ │ ├── triplet_loss.cpython-37.pyc │ │ │ │ ├── triplet_loss.cpython-39.pyc │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ └── utils.cpython-39.pyc │ │ │ ├── circle_loss.py │ │ │ ├── cross_entroy_loss.py │ │ │ ├── focal_loss.py │ │ │ ├── triplet_loss.py │ │ │ └── utils.py │ │ └── meta_arch │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── baseline.cpython-310.pyc │ │ │ ├── baseline.cpython-37.pyc │ │ │ ├── baseline.cpython-39.pyc │ │ │ ├── build.cpython-310.pyc │ │ │ ├── build.cpython-37.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── distiller.cpython-310.pyc │ │ │ ├── distiller.cpython-37.pyc │ │ │ ├── distiller.cpython-39.pyc │ │ │ ├── mgn.cpython-310.pyc │ │ │ ├── mgn.cpython-37.pyc │ │ │ ├── mgn.cpython-39.pyc │ │ │ ├── moco.cpython-310.pyc │ │ │ ├── moco.cpython-37.pyc │ │ │ └── moco.cpython-39.pyc │ │ │ ├── baseline.py │ │ │ ├── build.py │ │ │ ├── distiller.py │ │ │ ├── mgn.py │ │ │ └── moco.py │ ├── solver │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── build.cpython-310.pyc │ │ │ ├── build.cpython-37.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── lr_scheduler.cpython-310.pyc │ │ │ ├── lr_scheduler.cpython-37.pyc │ │ │ └── lr_scheduler.cpython-39.pyc │ │ ├── build.py │ │ ├── lr_scheduler.py │ │ └── optim │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── lamb.cpython-310.pyc │ │ │ ├── lamb.cpython-37.pyc │ │ │ ├── lamb.cpython-39.pyc │ │ │ ├── radam.cpython-310.pyc │ │ │ ├── radam.cpython-37.pyc │ │ │ ├── radam.cpython-39.pyc │ │ │ ├── swa.cpython-310.pyc │ │ │ ├── swa.cpython-37.pyc │ │ │ └── swa.cpython-39.pyc │ │ │ ├── lamb.py │ │ │ ├── radam.py │ │ │ └── swa.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── checkpoint.cpython-310.pyc │ │ ├── checkpoint.cpython-312.pyc │ │ ├── checkpoint.cpython-37.pyc │ │ ├── checkpoint.cpython-39.pyc │ │ ├── collect_env.cpython-310.pyc │ │ ├── collect_env.cpython-37.pyc │ │ ├── collect_env.cpython-39.pyc │ │ ├── comm.cpython-310.pyc │ │ ├── comm.cpython-312.pyc │ │ ├── comm.cpython-37.pyc │ │ ├── comm.cpython-39.pyc │ │ ├── compute_dist.cpython-310.pyc │ │ ├── compute_dist.cpython-37.pyc │ │ ├── compute_dist.cpython-39.pyc │ │ ├── env.cpython-310.pyc │ │ ├── env.cpython-37.pyc │ │ ├── env.cpython-39.pyc │ │ ├── events.cpython-310.pyc │ │ ├── events.cpython-312.pyc │ │ ├── events.cpython-37.pyc │ │ ├── events.cpython-39.pyc │ │ ├── faiss_utils.cpython-310.pyc │ │ ├── faiss_utils.cpython-37.pyc │ │ ├── faiss_utils.cpython-39.pyc │ │ ├── file_io.cpython-310.pyc │ │ ├── file_io.cpython-312.pyc │ │ ├── file_io.cpython-37.pyc │ │ ├── file_io.cpython-39.pyc │ │ ├── history_buffer.cpython-310.pyc │ │ ├── history_buffer.cpython-312.pyc │ │ ├── history_buffer.cpython-37.pyc │ │ ├── history_buffer.cpython-39.pyc │ │ ├── logger.cpython-310.pyc │ │ ├── logger.cpython-37.pyc │ │ ├── logger.cpython-39.pyc │ │ ├── params.cpython-310.pyc │ │ ├── params.cpython-37.pyc │ │ ├── params.cpython-39.pyc │ │ ├── precision_bn.cpython-310.pyc │ │ ├── precision_bn.cpython-37.pyc │ │ ├── precision_bn.cpython-39.pyc │ │ ├── registry.cpython-310.pyc │ │ ├── registry.cpython-312.pyc │ │ ├── registry.cpython-37.pyc │ │ ├── registry.cpython-39.pyc │ │ ├── timer.cpython-310.pyc │ │ ├── timer.cpython-37.pyc │ │ └── timer.cpython-39.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 │ │ ├── params.py │ │ ├── precision_bn.py │ │ ├── registry.py │ │ ├── summary.py │ │ ├── timer.py │ │ └── visualizer.py ├── logs │ └── .gitkeep ├── projects │ ├── CrossDomainReID │ │ └── README.md │ ├── DG-ReID │ │ └── README.md │ ├── FastAttr │ │ ├── README.md │ │ ├── configs │ │ │ ├── Base-attribute.yml │ │ │ ├── dukemtmc.yml │ │ │ ├── market1501.yml │ │ │ └── pa100.yml │ │ ├── fastattr │ │ │ ├── __init__.py │ │ │ ├── attr_dataset.py │ │ │ ├── attr_evaluation.py │ │ │ ├── config.py │ │ │ ├── datasets │ │ │ │ ├── __init__.py │ │ │ │ ├── bases.py │ │ │ │ ├── dukemtmcattr.py │ │ │ │ ├── market1501attr.py │ │ │ │ └── pa100k.py │ │ │ └── modeling │ │ │ │ ├── __init__.py │ │ │ │ ├── attr_baseline.py │ │ │ │ ├── attr_head.py │ │ │ │ └── bce_loss.py │ │ └── train_net.py │ ├── FastClas │ │ ├── README.md │ │ ├── configs │ │ │ └── base-clas.yaml │ │ ├── fastclas │ │ │ ├── __init__.py │ │ │ ├── bee_ant.py │ │ │ ├── dataset.py │ │ │ └── trainer.py │ │ └── train_net.py │ ├── FastDistill │ │ ├── README.md │ │ ├── configs │ │ │ ├── Base-kd.yml │ │ │ ├── kd-sbs_r101ibn-sbs_r34.yml │ │ │ ├── sbs_r101ibn.yml │ │ │ └── sbs_r34.yml │ │ ├── fastdistill │ │ │ ├── __init__.py │ │ │ ├── overhaul.py │ │ │ └── resnet_distill.py │ │ └── train_net.py │ ├── FastFace │ │ ├── README.md │ │ ├── configs │ │ │ ├── face_base.yml │ │ │ ├── r101_ir.yml │ │ │ └── r50_ir.yml │ │ ├── fastface │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── datasets │ │ │ │ ├── __init__.py │ │ │ │ ├── ms1mv2.py │ │ │ │ └── test_dataset.py │ │ │ ├── face_data.py │ │ │ ├── face_evaluator.py │ │ │ ├── modeling │ │ │ │ ├── __init__.py │ │ │ │ ├── face_baseline.py │ │ │ │ ├── face_head.py │ │ │ │ ├── iresnet.py │ │ │ │ └── partial_fc.py │ │ │ ├── pfc_checkpointer.py │ │ │ ├── trainer.py │ │ │ ├── utils_amp.py │ │ │ └── verification.py │ │ └── train_net.py │ ├── FastRT │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── demo │ │ │ ├── CMakeLists.txt │ │ │ └── inference.cpp │ │ ├── docker │ │ │ ├── trt7cu100 │ │ │ │ └── Dockerfile │ │ │ └── trt7cu102 │ │ │ │ └── Dockerfile │ │ ├── fastrt │ │ │ ├── CMakeLists.txt │ │ │ ├── backbones │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sbs_resnet.cpp │ │ │ ├── common │ │ │ │ ├── calibrator.cpp │ │ │ │ └── utils.cpp │ │ │ ├── engine │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── InferenceEngine.cpp │ │ │ ├── factory │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── factory.cpp │ │ │ ├── heads │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── embedding_head.cpp │ │ │ ├── layers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── layers.cpp │ │ │ │ ├── poolingLayerRT.cpp │ │ │ │ └── poolingLayerRT.h │ │ │ └── meta_arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── baseline.cpp │ │ │ │ └── model.cpp │ │ ├── include │ │ │ └── fastrt │ │ │ │ ├── IPoolingLayerRT.h │ │ │ │ ├── InferenceEngine.h │ │ │ │ ├── baseline.h │ │ │ │ ├── calibrator.h │ │ │ │ ├── config.h.in │ │ │ │ ├── cuda_utils.h │ │ │ │ ├── embedding_head.h │ │ │ │ ├── factory.h │ │ │ │ ├── holder.h │ │ │ │ ├── layers.h │ │ │ │ ├── logging.h │ │ │ │ ├── model.h │ │ │ │ ├── module.h │ │ │ │ ├── sbs_resnet.h │ │ │ │ ├── struct.h │ │ │ │ └── utils.h │ │ ├── pybind_interface │ │ │ ├── CMakeLists.txt │ │ │ ├── docker │ │ │ │ ├── trt7cu100 │ │ │ │ │ └── Dockerfile │ │ │ │ └── trt7cu102_torch160 │ │ │ │ │ └── Dockerfile │ │ │ ├── market_benchmark.py │ │ │ ├── reid.cpp │ │ │ └── test.py │ │ ├── third_party │ │ │ └── cnpy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cnpy.cpp │ │ │ │ ├── cnpy.h │ │ │ │ ├── example1.cpp │ │ │ │ ├── mat2npz │ │ │ │ ├── npy2mat │ │ │ │ └── npz2mat │ │ └── tools │ │ │ ├── How_to_Generate.md │ │ │ └── gen_wts.py │ ├── FastRetri │ │ ├── README.md │ │ ├── configs │ │ │ ├── base-image_retri.yml │ │ │ ├── cars.yml │ │ │ ├── cub.yml │ │ │ ├── inshop.yml │ │ │ └── sop.yml │ │ ├── fastretri │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── datasets.py │ │ │ └── retri_evaluator.py │ │ └── train_net.py │ ├── FastTune │ │ ├── README.md │ │ ├── autotuner │ │ │ ├── __init__.py │ │ │ └── tune_hooks.py │ │ ├── configs │ │ │ └── search_trial.yml │ │ └── tune_net.py │ ├── HAA │ │ └── Readme.md │ ├── NAIC20 │ │ ├── README.md │ │ ├── configs │ │ │ ├── Base-naic.yml │ │ │ ├── nest101-base.yml │ │ │ ├── r34-ibn.yml │ │ │ └── submit.yml │ │ ├── label.txt │ │ ├── naic │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── naic_dataset.py │ │ │ └── naic_evaluator.py │ │ ├── naic20r2_train_list_clean.txt │ │ ├── train_list_clean.txt │ │ ├── train_net.py │ │ ├── val_gallery.txt │ │ └── val_query.txt │ ├── PartialReID │ │ ├── README.md │ │ ├── configs │ │ │ └── partial_market.yml │ │ ├── partialreid │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── dsr_distance.py │ │ │ ├── dsr_evaluation.py │ │ │ ├── dsr_head.py │ │ │ ├── partial_dataset.py │ │ │ └── partialbaseline.py │ │ └── train_net.py │ └── README.md ├── tests │ ├── __init__.py │ ├── dataset_test.py │ ├── feature_align.py │ ├── interp_test.py │ ├── lr_scheduler_test.py │ ├── model_test.py │ ├── sampler_test.py │ └── test_repvgg.py └── tools │ ├── convert_weight.py │ ├── deploy │ ├── Caffe │ │ ├── ReadMe.md │ │ ├── __init__.py │ │ ├── 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 │ ├── test_data │ │ ├── 0022_c6s1_002976_01.jpg │ │ ├── 0027_c2s2_091032_02.jpg │ │ ├── 0032_c6s1_002851_01.jpg │ │ ├── 0048_c1s1_005351_01.jpg │ │ └── 0065_c6s1_009501_02.jpg │ ├── trt_calibrator.py │ ├── trt_export.py │ └── trt_inference.py │ ├── infer.py │ ├── plain_train_net.py │ └── train_net.py ├── leadboard.jpg ├── mmpose ├── .circleci │ ├── config.yml │ ├── docker │ │ └── Dockerfile │ ├── scripts │ │ └── get_mmcv_var.sh │ └── test.yml ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── ISSUE_TEMPLATE │ │ ├── 1-bug-report.yml │ │ ├── 2-feature_request.yml │ │ ├── 3-documentation.yml │ │ └── config.yml │ ├── pull_request_template.md │ └── workflows │ │ ├── deploy.yml │ │ ├── lint.yml │ │ ├── merge_stage_test.yml │ │ ├── pr_stage_test.yml │ │ └── scripts │ │ └── get_mmcv_var.sh ├── .gitignore ├── .owners.yml ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── CITATION.cff ├── LICENSE ├── LICENSES.md ├── MANIFEST.in ├── README.md ├── README_CN.md ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ ├── 300w.py │ │ │ ├── 300wlp.py │ │ │ ├── aflw.py │ │ │ ├── aic.py │ │ │ ├── ak.py │ │ │ ├── animalpose.py │ │ │ ├── ap10k.py │ │ │ ├── atrw.py │ │ │ ├── campus.py │ │ │ ├── coco.py │ │ │ ├── coco_aic.py │ │ │ ├── coco_openpose.py │ │ │ ├── coco_wholebody.py │ │ │ ├── coco_wholebody_face.py │ │ │ ├── coco_wholebody_hand.py │ │ │ ├── coco_wholebody_openpose.py │ │ │ ├── cofw.py │ │ │ ├── crowdpose.py │ │ │ ├── deepfashion2.py │ │ │ ├── deepfashion_full.py │ │ │ ├── deepfashion_lower.py │ │ │ ├── deepfashion_upper.py │ │ │ ├── exlpose.py │ │ │ ├── fly.py │ │ │ ├── freihand2d.py │ │ │ ├── h36m.py │ │ │ ├── h3wb.py │ │ │ ├── halpe.py │ │ │ ├── halpe26.py │ │ │ ├── horse10.py │ │ │ ├── humanart.py │ │ │ ├── humanart21.py │ │ │ ├── humanart_aic.py │ │ │ ├── interhand2d.py │ │ │ ├── interhand3d.py │ │ │ ├── jhmdb.py │ │ │ ├── lapa.py │ │ │ ├── locust.py │ │ │ ├── macaque.py │ │ │ ├── mhp.py │ │ │ ├── mpi_inf_3dhp.py │ │ │ ├── mpii.py │ │ │ ├── mpii_trb.py │ │ │ ├── ochuman.py │ │ │ ├── onehand10k.py │ │ │ ├── panoptic_body3d.py │ │ │ ├── panoptic_hand2d.py │ │ │ ├── posetrack18.py │ │ │ ├── rhd2d.py │ │ │ ├── shelf.py │ │ │ ├── ubody2d.py │ │ │ ├── ubody3d.py │ │ │ ├── wflw.py │ │ │ └── zebra.py │ │ └── default_runtime.py │ ├── animal_2d_keypoint │ │ ├── README.md │ │ ├── rtmpose │ │ │ ├── README.md │ │ │ └── ap10k │ │ │ │ ├── rtmpose-m_8xb64-210e_ap10k-256x256.py │ │ │ │ ├── rtmpose_ap10k.md │ │ │ │ └── rtmpose_ap10k.yml │ │ └── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── ak │ │ │ ├── hrnet_animalkingdom.md │ │ │ ├── hrnet_animalkingdom.yml │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P1-256x256.py │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P2-256x256.py │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P3_amphibian-256x256.py │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P3_bird-256x256.py │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P3_fish-256x256.py │ │ │ ├── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P3_mammal-256x256.py │ │ │ └── td-hm_hrnet-w32_8xb32-300e_animalkingdom_P3_reptile-256x256.py │ │ │ ├── animalpose │ │ │ ├── hrnet_animalpose.md │ │ │ ├── hrnet_animalpose.yml │ │ │ ├── resnet_animalpose.md │ │ │ ├── resnet_animalpose.yml │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_animalpose-256x256.py │ │ │ ├── td-hm_hrnet-w48_8xb64-210e_animalpose-256x256.py │ │ │ ├── td-hm_res101_8xb64-210e_animalpose-256x256.py │ │ │ ├── td-hm_res152_8xb32-210e_animalpose-256x256.py │ │ │ └── td-hm_res50_8xb64-210e_animalpose-256x256.py │ │ │ ├── ap10k │ │ │ ├── cspnext-m_udp_8xb64-210e_ap10k-256x256.py │ │ │ ├── cspnext_udp_ap10k.md │ │ │ ├── cspnext_udp_ap10k.yml │ │ │ ├── hrnet_ap10k.md │ │ │ ├── hrnet_ap10k.yml │ │ │ ├── resnet_ap10k.md │ │ │ ├── resnet_ap10k.yml │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_ap10k-256x256.py │ │ │ ├── td-hm_hrnet-w48_8xb64-210e_ap10k-256x256.py │ │ │ ├── td-hm_res101_8xb64-210e_ap10k-256x256.py │ │ │ └── td-hm_res50_8xb64-210e_ap10k-256x256.py │ │ │ ├── locust │ │ │ ├── resnet_locust.md │ │ │ ├── resnet_locust.yml │ │ │ ├── td-hm_res101_8xb64-210e_locust-160x160.py │ │ │ ├── td-hm_res152_8xb32-210e_locust-160x160.py │ │ │ └── td-hm_res50_8xb64-210e_locust-160x160.py │ │ │ └── zebra │ │ │ ├── resnet_zebra.md │ │ │ ├── resnet_zebra.yml │ │ │ ├── td-hm_res101_8xb64-210e_zebra-160x160.py │ │ │ ├── td-hm_res152_8xb32-210e_zebra-160x160.py │ │ │ └── td-hm_res50_8xb64-210e_zebra-160x160.py │ ├── body_2d_keypoint │ │ ├── README.md │ │ ├── associative_embedding │ │ │ ├── README.md │ │ │ └── coco │ │ │ │ ├── ae_hrnet-w32_8xb24-300e_coco-512x512.py │ │ │ │ ├── hrnet_coco.md │ │ │ │ └── hrnet_coco.yml │ │ ├── cid │ │ │ └── coco │ │ │ │ ├── cid_hrnet-w32_8xb20-140e_coco-512x512.py │ │ │ │ ├── cid_hrnet-w48_8xb20-140e_coco-512x512.py │ │ │ │ ├── hrnet_coco.md │ │ │ │ └── hrnet_coco.yml │ │ ├── dekr │ │ │ ├── README.md │ │ │ ├── coco │ │ │ │ ├── dekr_hrnet-w32_8xb10-140e_coco-512x512.py │ │ │ │ ├── dekr_hrnet-w48_8xb10-140e_coco-640x640.py │ │ │ │ ├── hrnet_coco.md │ │ │ │ └── hrnet_coco.yml │ │ │ └── crowdpose │ │ │ │ ├── dekr_hrnet-w32_8xb10-300e_crowdpose-512x512.py │ │ │ │ ├── dekr_hrnet-w48_8xb5-300e_crowdpose-640x640.py │ │ │ │ ├── hrnet_crowdpose.md │ │ │ │ └── hrnet_crowdpose.yml │ │ ├── edpose │ │ │ └── coco │ │ │ │ ├── edpose_coco.md │ │ │ │ ├── edpose_coco.yml │ │ │ │ └── edpose_res50_8xb2-50e_coco-800x1333.py │ │ ├── integral_regression │ │ │ ├── README.md │ │ │ └── coco │ │ │ │ ├── ipr_res50_8xb64-210e_coco-256x256.py │ │ │ │ ├── ipr_res50_debias-8xb64-210e_coco-256x256.py │ │ │ │ ├── ipr_res50_dsnt-8xb64-210e_coco-256x256.py │ │ │ │ ├── resnet_debias_coco.md │ │ │ │ ├── resnet_debias_coco.yml │ │ │ │ ├── resnet_dsnt_coco.md │ │ │ │ ├── resnet_dsnt_coco.yml │ │ │ │ ├── resnet_ipr_coco.md │ │ │ │ └── resnet_ipr_coco.yml │ │ ├── rtmo │ │ │ ├── README.md │ │ │ ├── body7 │ │ │ │ ├── rtmo-l_16xb16-600e_body7-640x640.py │ │ │ │ ├── rtmo-m_16xb16-600e_body7-640x640.py │ │ │ │ ├── rtmo-s_8xb32-600e_body7-640x640.py │ │ │ │ ├── rtmo-t_8xb32-600e_body7-416x416.py │ │ │ │ ├── rtmo_body7.md │ │ │ │ └── rtmo_body7.yml │ │ │ ├── coco │ │ │ │ ├── rtmo-l_16xb16-600e_coco-640x640.py │ │ │ │ ├── rtmo-m_16xb16-600e_coco-640x640.py │ │ │ │ ├── rtmo-s_8xb32-600e_coco-640x640.py │ │ │ │ ├── rtmo_coco.md │ │ │ │ └── rtmo_coco.yml │ │ │ └── crowdpose │ │ │ │ ├── rtmo-l_16xb16-700e_body7-crowdpose-640x640.py │ │ │ │ ├── rtmo-l_16xb16-700e_crowdpose-640x640.py │ │ │ │ ├── rtmo-m_16xb16-700e_crowdpose-640x640.py │ │ │ │ ├── rtmo-s_8xb32-700e_crowdpose-640x640.py │ │ │ │ ├── rtmo_crowdpose.md │ │ │ │ └── rtmo_crowdpose.yml │ │ ├── rtmpose │ │ │ ├── README.md │ │ │ ├── body8 │ │ │ │ ├── rtmpose-l_8xb256-420e_body8-256x192.py │ │ │ │ ├── rtmpose-l_8xb256-420e_body8-384x288.py │ │ │ │ ├── rtmpose-l_8xb512-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-l_8xb512-700e_body8-halpe26-384x288.py │ │ │ │ ├── rtmpose-m_8xb256-420e_body8-256x192.py │ │ │ │ ├── rtmpose-m_8xb256-420e_body8-384x288.py │ │ │ │ ├── rtmpose-m_8xb512-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-m_8xb512-700e_body8-halpe26-384x288.py │ │ │ │ ├── rtmpose-s_8xb1024-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-s_8xb256-420e_body8-256x192.py │ │ │ │ ├── rtmpose-t_8xb1024-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-t_8xb256-420e_body8-256x192.py │ │ │ │ ├── rtmpose-x_8xb256-700e_body8-halpe26-384x288.py │ │ │ │ ├── rtmpose_body8-coco.md │ │ │ │ ├── rtmpose_body8-coco.yml │ │ │ │ ├── rtmpose_body8-halpe26.md │ │ │ │ └── rtmpose_body8-halpe26.yml │ │ │ ├── coco │ │ │ │ ├── rtmpose-l_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── rtmpose-l_8xb256-420e_aic-coco-384x288.py │ │ │ │ ├── rtmpose-l_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-m_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── rtmpose-m_8xb256-420e_aic-coco-384x288.py │ │ │ │ ├── rtmpose-m_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-s_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── rtmpose-s_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-t_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── rtmpose-t_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose_coco.md │ │ │ │ └── rtmpose_coco.yml │ │ │ ├── crowdpose │ │ │ │ ├── rtmpose-m_8xb64-210e_crowdpose-256x192.py │ │ │ │ ├── rtmpose_crowdpose.md │ │ │ │ └── rtmpose_crowdpose.yml │ │ │ ├── humanart │ │ │ │ ├── rtmpose-l_8xb256-420e_humanart-256x192.py │ │ │ │ ├── rtmpose-m_8xb256-420e_humanart-256x192.py │ │ │ │ ├── rtmpose-s_8xb256-420e_humanart-256x192.py │ │ │ │ ├── rtmpose-t_8xb256-420e_humanart-256x192.py │ │ │ │ ├── rtmpose_humanart.md │ │ │ │ └── rtmpose_humanart.yml │ │ │ └── mpii │ │ │ │ ├── rtmpose-m_8xb64-210e_mpii-256x256.py │ │ │ │ ├── rtmpose_mpii.md │ │ │ │ └── rtmpose_mpii.yml │ │ ├── simcc │ │ │ ├── README.md │ │ │ ├── coco │ │ │ │ ├── mobilenetv2_coco.md │ │ │ │ ├── mobilenetv2_coco.yml │ │ │ │ ├── resnet_coco.md │ │ │ │ ├── resnet_coco.yml │ │ │ │ ├── simcc_mobilenetv2_wo-deconv-8xb64-210e_coco-256x192.py │ │ │ │ ├── simcc_res50_8xb32-140e_coco-384x288.py │ │ │ │ ├── simcc_res50_8xb64-210e_coco-256x192.py │ │ │ │ ├── simcc_vipnas-mbv3_8xb64-210e_coco-256x192.py │ │ │ │ ├── vipnas_coco.md │ │ │ │ └── vipnas_coco.yml │ │ │ └── mpii │ │ │ │ └── simcc_res50_wo-deconv-8xb64-210e_mpii-256x256.py │ │ ├── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── aic │ │ │ │ ├── hrnet_aic.md │ │ │ │ ├── hrnet_aic.yml │ │ │ │ ├── resnet_aic.md │ │ │ │ ├── resnet_aic.yml │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_aic-256x192.py │ │ │ │ └── td-hm_res101_8xb64-210e_aic-256x192.py │ │ │ ├── coco │ │ │ │ ├── alexnet_coco.md │ │ │ │ ├── alexnet_coco.yml │ │ │ │ ├── cpm_coco.md │ │ │ │ ├── cpm_coco.yml │ │ │ │ ├── cspnext-l_udp_8xb256-210e_aic-coco-256x192.py │ │ │ │ ├── cspnext-l_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext-m_udp_8xb256-210e_aic-coco-256x192.py │ │ │ │ ├── cspnext-m_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext-s_udp_8xb256-210e_aic-coco-256x192.py │ │ │ │ ├── cspnext-s_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext-tiny_udp_8xb256-210e_aic-coco-256x192.py │ │ │ │ ├── cspnext-tiny_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext_udp_coco.md │ │ │ │ ├── cspnext_udp_coco.yml │ │ │ │ ├── hourglass_coco.md │ │ │ │ ├── hourglass_coco.yml │ │ │ │ ├── hrformer_coco.md │ │ │ │ ├── hrformer_coco.yml │ │ │ │ ├── hrnet_augmentation_coco.md │ │ │ │ ├── hrnet_augmentation_coco.yml │ │ │ │ ├── hrnet_coco.md │ │ │ │ ├── hrnet_coco.yml │ │ │ │ ├── hrnet_coco_aic.md │ │ │ │ ├── hrnet_dark_coco.md │ │ │ │ ├── hrnet_dark_coco.yml │ │ │ │ ├── hrnet_fp16_coco.md │ │ │ │ ├── hrnet_udp_coco.md │ │ │ │ ├── hrnet_udp_coco.yml │ │ │ │ ├── litehrnet_coco.md │ │ │ │ ├── litehrnet_coco.yml │ │ │ │ ├── mobilenetv2_coco.md │ │ │ │ ├── mobilenetv2_coco.yml │ │ │ │ ├── mspn_coco.md │ │ │ │ ├── mspn_coco.yml │ │ │ │ ├── pvt_coco.md │ │ │ │ ├── pvt_coco.yml │ │ │ │ ├── resnest_coco.md │ │ │ │ ├── resnest_coco.yml │ │ │ │ ├── resnet_coco.md │ │ │ │ ├── resnet_coco.yml │ │ │ │ ├── resnet_dark_coco.md │ │ │ │ ├── resnet_dark_coco.yml │ │ │ │ ├── resnet_fp16_coco.md │ │ │ │ ├── resnetv1d_coco.md │ │ │ │ ├── resnetv1d_coco.yml │ │ │ │ ├── resnext_coco.md │ │ │ │ ├── resnext_coco.yml │ │ │ │ ├── rsn_coco.md │ │ │ │ ├── rsn_coco.yml │ │ │ │ ├── scnet_coco.md │ │ │ │ ├── scnet_coco.yml │ │ │ │ ├── seresnet_coco.md │ │ │ │ ├── seresnet_coco.yml │ │ │ │ ├── shufflenetv1_coco.md │ │ │ │ ├── shufflenetv1_coco.yml │ │ │ │ ├── shufflenetv2_coco.md │ │ │ │ ├── shufflenetv2_coco.yml │ │ │ │ ├── swin_coco.md │ │ │ │ ├── swin_coco.yml │ │ │ │ ├── td-hm-vis_res50_8xb64-210e_coco-aic-256x192-merge.py │ │ │ │ ├── td-hm_2xmspn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_2xrsn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_3xmspn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_3xrsn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_4xmspn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-base-simple_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-base_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-huge-simple_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-huge_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-large-simple_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-large_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-small-simple_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_ViTPose-small_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_alexnet_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_cpm_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_cpm_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hourglass52_8xb32-210e_coco-256x256.py │ │ │ │ ├── td-hm_hourglass52_8xb32-210e_coco-384x384.py │ │ │ │ ├── td-hm_hrformer-base_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrformer-base_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrformer-small_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrformer-small_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-aic-256x192-combine.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-aic-256x192-merge.py │ │ │ │ ├── td-hm_hrnet-w32_coarsedropout-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_dark-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_dark-8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w32_fp16-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_gridmask-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_photometric-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_udp-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_udp-8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w32_udp-regress-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w48_dark-8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_dark-8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_hrnet-w48_udp-8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_udp-8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_litehrnet-18_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_litehrnet-18_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_litehrnet-30_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_litehrnet-30_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_mobilenetv2_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_mobilenetv2_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_mspn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_pvt-s_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_pvtv2-b2_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_res101_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_res101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_res101_dark-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_res101_dark-8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_res152_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_res152_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_res152_dark-8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_res152_dark-8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_res50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_res50_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_res50_dark-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_res50_dark-8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_res50_fp16-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnest101_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnest101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnest200_8xb16-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnest200_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnest269_8xb16-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnest269_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnest50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnest50_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnetv1d101_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnetv1d101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnetv1d152_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnetv1d152_8xb48-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnetv1d50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnetv1d50_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnext101_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnext101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnext152_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnext152_8xb48-210e_coco-384x288.py │ │ │ │ ├── td-hm_resnext50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_resnext50_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_rsn18_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_rsn50_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_scnet101_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_scnet101_8xb48-210e_coco-384x288.py │ │ │ │ ├── td-hm_scnet50_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_scnet50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_seresnet101_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_seresnet101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_seresnet152_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_seresnet152_8xb48-210e_coco-384x288.py │ │ │ │ ├── td-hm_seresnet50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_seresnet50_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_shufflenetv1_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_shufflenetv1_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_shufflenetv2_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_shufflenetv2_8xb64-210e_coco-384x288.py │ │ │ │ ├── td-hm_swin-b-p4-w7_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_swin-b-p4-w7_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_swin-l-p4-w7_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_swin-l-p4-w7_8xb32-210e_coco-384x288.py │ │ │ │ ├── td-hm_swin-t-p4-w7_8xb32-210e_coco-256x192.py │ │ │ │ ├── td-hm_vgg16-bn_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_vipnas-mbv3_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-hm_vipnas-res50_8xb64-210e_coco-256x192.py │ │ │ │ ├── vgg_coco.md │ │ │ │ ├── vgg_coco.yml │ │ │ │ ├── vipnas_coco.md │ │ │ │ ├── vipnas_coco.yml │ │ │ │ ├── vitpose_coco.md │ │ │ │ └── vitpose_coco.yml │ │ │ ├── crowdpose │ │ │ │ ├── cspnext-m_udp_8xb64-210e_crowpose-256x192.py │ │ │ │ ├── cspnext_udp_crowdpose.md │ │ │ │ ├── cspnext_udp_crowdpose.yml │ │ │ │ ├── hrnet_crowdpose.md │ │ │ │ ├── hrnet_crowdpose.yml │ │ │ │ ├── resnet_crowdpose.md │ │ │ │ ├── resnet_crowdpose.yml │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_crowdpose-256x192.py │ │ │ │ ├── td-hm_res101_8xb64-210e_crowdpose-256x192.py │ │ │ │ ├── td-hm_res101_8xb64-210e_crowdpose-320x256.py │ │ │ │ ├── td-hm_res152_8xb64-210e_crowdpose-256x192.py │ │ │ │ └── td-hm_res50_8xb64-210e_crowdpose-256x192.py │ │ │ ├── exlpose │ │ │ │ ├── hrnet_exlpose.md │ │ │ │ ├── hrnet_exlpose.yml │ │ │ │ └── td-hm_hrnet-w32_8xb64-210e_exlpose-256x192.py │ │ │ ├── humanart │ │ │ │ ├── hrnet_humanart.md │ │ │ │ ├── hrnet_humanart.yml │ │ │ │ ├── td-hm_ViTPose-base_8xb64-210e_humanart-256x192.py │ │ │ │ ├── td-hm_ViTPose-huge_8xb64-210e_humanart-256x192.py │ │ │ │ ├── td-hm_ViTPose-large_8xb64-210e_humanart-256x192.py │ │ │ │ ├── td-hm_ViTPose-small_8xb64-210e_humanart-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_humanart-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_humanart-256x192.py │ │ │ │ ├── vitpose_humanart.md │ │ │ │ └── vitpose_humanart.yml │ │ │ ├── jhmdb │ │ │ │ ├── cpm_jhmdb.md │ │ │ │ ├── cpm_jhmdb.yml │ │ │ │ ├── resnet_jhmdb.md │ │ │ │ ├── resnet_jhmdb.yml │ │ │ │ ├── td-hm_cpm_8xb32-40e_jhmdb-sub1-368x368.py │ │ │ │ ├── td-hm_cpm_8xb32-40e_jhmdb-sub2-368x368.py │ │ │ │ ├── td-hm_cpm_8xb32-40e_jhmdb-sub3-368x368.py │ │ │ │ ├── td-hm_res50-2deconv_8xb64-40e_jhmdb-sub1-256x256.py │ │ │ │ ├── td-hm_res50-2deconv_8xb64-40e_jhmdb-sub2-256x256.py │ │ │ │ ├── td-hm_res50-2deconv_8xb64-40e_jhmdb-sub3-256x256.py │ │ │ │ ├── td-hm_res50_8xb64-20e_jhmdb-sub1-256x256.py │ │ │ │ ├── td-hm_res50_8xb64-20e_jhmdb-sub2-256x256.py │ │ │ │ └── td-hm_res50_8xb64-20e_jhmdb-sub3-256x256.py │ │ │ ├── mpii │ │ │ │ ├── cpm_mpii.md │ │ │ │ ├── cpm_mpii.yml │ │ │ │ ├── cspnext-m_udp_8xb64-210e_mpii-256x256.py │ │ │ │ ├── cspnext_udp_mpii.md │ │ │ │ ├── cspnext_udp_mpii.yml │ │ │ │ ├── hourglass_mpii.md │ │ │ │ ├── hourglass_mpii.yml │ │ │ │ ├── hrnet_dark_mpii.md │ │ │ │ ├── hrnet_dark_mpii.yml │ │ │ │ ├── hrnet_mpii.md │ │ │ │ ├── hrnet_mpii.yml │ │ │ │ ├── litehrnet_mpii.md │ │ │ │ ├── litehrnet_mpii.yml │ │ │ │ ├── mobilenetv2_mpii.md │ │ │ │ ├── mobilenetv2_mpii.yml │ │ │ │ ├── resnet_mpii.md │ │ │ │ ├── resnet_mpii.yml │ │ │ │ ├── resnetv1d_mpii.md │ │ │ │ ├── resnetv1d_mpii.yml │ │ │ │ ├── resnext_mpii.md │ │ │ │ ├── resnext_mpii.yml │ │ │ │ ├── scnet_mpii.md │ │ │ │ ├── scnet_mpii.yml │ │ │ │ ├── seresnet_mpii.md │ │ │ │ ├── seresnet_mpii.yml │ │ │ │ ├── shufflenetv1_mpii.md │ │ │ │ ├── shufflenetv1_mpii.yml │ │ │ │ ├── shufflenetv2_mpii.md │ │ │ │ ├── shufflenetv2_mpii.yml │ │ │ │ ├── td-hm_cpm_8xb64-210e_mpii-368x368.py │ │ │ │ ├── td-hm_hourglass52_8xb32-210e_mpii-384x384.py │ │ │ │ ├── td-hm_hourglass52_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_hrnet-w32_dark-8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_hrnet-w48_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_hrnet-w48_dark-8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_litehrnet-18_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_litehrnet-30_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_mobilenetv2_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_res101_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_res152_8xb32-210e_mpii-256x256.py │ │ │ │ ├── td-hm_res50_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_resnetv1d101_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_resnetv1d152_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_resnetv1d50_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_resnext152_8xb32-210e_mpii-256x256.py │ │ │ │ ├── td-hm_scnet101_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_scnet50_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_seresnet101_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_seresnet152_8xb32-210e_mpii-256x256.py │ │ │ │ ├── td-hm_seresnet50_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-hm_shufflenetv1_8xb64-210e_mpii-256x256.py │ │ │ │ └── td-hm_shufflenetv2_8xb64-210e_mpii-256x256.py │ │ │ └── posetrack18 │ │ │ │ ├── hrnet_posetrack18.md │ │ │ │ ├── hrnet_posetrack18.yml │ │ │ │ ├── resnet_posetrack18.md │ │ │ │ ├── resnet_posetrack18.yml │ │ │ │ ├── td-hm_hrnet-w32_8xb64-20e_posetrack18-256x192.py │ │ │ │ ├── td-hm_hrnet-w32_8xb64-20e_posetrack18-384x288.py │ │ │ │ ├── td-hm_hrnet-w48_8xb64-20e_posetrack18-256x192.py │ │ │ │ ├── td-hm_hrnet-w48_8xb64-20e_posetrack18-384x288.py │ │ │ │ └── td-hm_res50_8xb64-20e_posetrack18-256x192.py │ │ ├── topdown_regression │ │ │ ├── README.md │ │ │ ├── coco │ │ │ │ ├── mobilenetv2_rle_coco.md │ │ │ │ ├── mobilenetv2_rle_coco.yml │ │ │ │ ├── resnet_coco.md │ │ │ │ ├── resnet_coco.yml │ │ │ │ ├── resnet_rle_coco.md │ │ │ │ ├── resnet_rle_coco.yml │ │ │ │ ├── td-reg_mobilenetv2_rle-pretrained-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res101_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res101_rle-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res152_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res152_rle-8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res152_rle-8xb64-210e_coco-384x288.py │ │ │ │ ├── td-reg_res50_8xb64-210e_coco-256x192.py │ │ │ │ ├── td-reg_res50_rle-8xb64-210e_coco-256x192.py │ │ │ │ └── td-reg_res50_rle-pretrained-8xb64-210e_coco-256x192.py │ │ │ └── mpii │ │ │ │ ├── resnet_mpii.md │ │ │ │ ├── resnet_mpii.yml │ │ │ │ ├── resnet_rle_mpii.md │ │ │ │ ├── resnet_rle_mpii.yml │ │ │ │ ├── td-reg_res101_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-reg_res152_8xb64-210e_mpii-256x256.py │ │ │ │ ├── td-reg_res50_8xb64-210e_mpii-256x256.py │ │ │ │ └── td-reg_res50_rle-8xb64-210e_mpii-256x256.py │ │ └── yoloxpose │ │ │ ├── README.md │ │ │ └── coco │ │ │ ├── yoloxpose_coco.md │ │ │ ├── yoloxpose_coco.yml │ │ │ ├── yoloxpose_l_8xb32-300e_coco-640.py │ │ │ ├── yoloxpose_m_8xb32-300e_coco-640.py │ │ │ ├── yoloxpose_s_8xb32-300e_coco-640.py │ │ │ └── yoloxpose_tiny_4xb64-300e_coco-416.py │ ├── body_3d_keypoint │ │ ├── README.md │ │ ├── image_pose_lift │ │ │ ├── README.md │ │ │ └── h36m │ │ │ │ ├── image-pose-lift_tcn_8xb64-200e_h36m.py │ │ │ │ ├── simplebaseline3d_h36m.md │ │ │ │ └── simplebaseline3d_h36m.yml │ │ ├── motionbert │ │ │ ├── README.md │ │ │ └── h36m │ │ │ │ ├── motionbert_dstformer-243frm_8xb32-240e_h36m-original.py │ │ │ │ ├── motionbert_dstformer-243frm_8xb32-240e_h36m.py │ │ │ │ ├── motionbert_dstformer-ft-243frm_8xb32-120e_h36m-original.py │ │ │ │ ├── motionbert_dstformer-ft-243frm_8xb32-120e_h36m.py │ │ │ │ ├── motionbert_h36m.md │ │ │ │ └── motionbert_h36m.yml │ │ └── video_pose_lift │ │ │ ├── README.md │ │ │ └── h36m │ │ │ ├── video-pose-lift_tcn-1frm-supv-cpn-ft_8xb128-160e_h36m.py │ │ │ ├── video-pose-lift_tcn-243frm-supv-cpn-ft_8xb128-200e_h36m.py │ │ │ ├── video-pose-lift_tcn-243frm-supv_8xb128-160e_h36m.py │ │ │ ├── video-pose-lift_tcn-27frm-semi-supv-cpn-ft_8xb64-200e_h36m.py │ │ │ ├── video-pose-lift_tcn-27frm-semi-supv_8xb64-200e_h36m.py │ │ │ ├── video-pose-lift_tcn-27frm-supv_8xb128-160e_h36m.py │ │ │ ├── video-pose-lift_tcn-81frm-supv_8xb128-160e_h36m.py │ │ │ ├── videopose3d_h36m.md │ │ │ └── videopose3d_h36m.yml │ ├── face_2d_keypoint │ │ ├── README.md │ │ ├── rtmpose │ │ │ ├── README.md │ │ │ ├── coco_wholebody_face │ │ │ │ ├── rtmpose-m_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ ├── rtmpose_coco_wholebody_face.md │ │ │ │ └── rtmpose_coco_wholebody_face.yml │ │ │ ├── face6 │ │ │ │ ├── rtmpose-m_8xb256-120e_face6-256x256.py │ │ │ │ ├── rtmpose-s_8xb256-120e_face6-256x256.py │ │ │ │ ├── rtmpose-t_8xb256-120e_face6-256x256.py │ │ │ │ ├── rtmpose_face6.md │ │ │ │ └── rtmpose_face6.yml │ │ │ ├── lapa │ │ │ │ ├── rtmpose-m_8xb64-120e_lapa-256x256.py │ │ │ │ ├── rtmpose_lapa.md │ │ │ │ └── rtmpose_lapa.yml │ │ │ └── wflw │ │ │ │ ├── rtmpose-m_8xb64-60e_wflw-256x256.py │ │ │ │ ├── rtmpose_wflw.md │ │ │ │ └── rtmpose_wflw.yml │ │ ├── topdown_heatmap │ │ │ ├── 300w │ │ │ │ ├── hrnetv2_300w.md │ │ │ │ ├── hrnetv2_300w.yml │ │ │ │ └── td-hm_hrnetv2-w18_8xb64-60e_300w-256x256.py │ │ │ ├── 300wlp │ │ │ │ ├── hrnetv2_300wlp.md │ │ │ │ ├── hrnetv2_300wlp.yml │ │ │ │ └── td-hm_hrnetv2-w18_8xb64-60e_300wlp-256x256.py │ │ │ ├── README.md │ │ │ ├── aflw │ │ │ │ ├── hrnetv2_aflw.md │ │ │ │ ├── hrnetv2_aflw.yml │ │ │ │ ├── hrnetv2_dark_aflw.md │ │ │ │ ├── hrnetv2_dark_aflw.yml │ │ │ │ ├── td-hm_hrnetv2-w18_8xb64-60e_aflw-256x256.py │ │ │ │ └── td-hm_hrnetv2-w18_dark-8xb64-60e_aflw-256x256.py │ │ │ ├── coco_wholebody_face │ │ │ │ ├── hourglass_coco_wholebody_face.md │ │ │ │ ├── hourglass_coco_wholebody_face.yml │ │ │ │ ├── hrnetv2_coco_wholebody_face.md │ │ │ │ ├── hrnetv2_coco_wholebody_face.yml │ │ │ │ ├── hrnetv2_dark_coco_wholebody_face.md │ │ │ │ ├── hrnetv2_dark_coco_wholebody_face.yml │ │ │ │ ├── mobilenetv2_coco_wholebody_face.md │ │ │ │ ├── mobilenetv2_coco_wholebody_face.yml │ │ │ │ ├── resnet_coco_wholebody_face.md │ │ │ │ ├── resnet_coco_wholebody_face.yml │ │ │ │ ├── scnet_coco_wholebody_face.md │ │ │ │ ├── scnet_coco_wholebody_face.yml │ │ │ │ ├── td-hm_hourglass52_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_dark-8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ ├── td-hm_mobilenetv2_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ ├── td-hm_res50_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ │ └── td-hm_scnet50_8xb32-60e_coco-wholebody-face-256x256.py │ │ │ ├── cofw │ │ │ │ ├── hrnetv2_cofw.md │ │ │ │ ├── hrnetv2_cofw.yml │ │ │ │ └── td-hm_hrnetv2-w18_8xb64-60e_cofw-256x256.py │ │ │ └── wflw │ │ │ │ ├── hrnetv2_awing_wflw.md │ │ │ │ ├── hrnetv2_awing_wflw.yml │ │ │ │ ├── hrnetv2_dark_wflw.md │ │ │ │ ├── hrnetv2_dark_wflw.yml │ │ │ │ ├── hrnetv2_wflw.md │ │ │ │ ├── hrnetv2_wflw.yml │ │ │ │ ├── td-hm_hrnetv2-w18_8xb64-60e_wflw-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_awing-8xb64-60e_wflw-256x256.py │ │ │ │ └── td-hm_hrnetv2-w18_dark-8xb64-60e_wflw-256x256.py │ │ └── topdown_regression │ │ │ ├── README.md │ │ │ └── wflw │ │ │ ├── resnet_softwingloss_wflw.md │ │ │ ├── resnet_softwingloss_wflw.yml │ │ │ ├── resnet_wflw.md │ │ │ ├── resnet_wflw.yml │ │ │ ├── resnet_wingloss_wflw.md │ │ │ ├── resnet_wingloss_wflw.yml │ │ │ ├── td-reg_res50_8xb64-210e_wflw-256x256.py │ │ │ ├── td-reg_res50_softwingloss_8xb64-210e_wflw-256x256.py │ │ │ └── td-reg_res50_wingloss_8xb64-210e_wflw-256x256.py │ ├── fashion_2d_keypoint │ │ ├── README.md │ │ └── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── deepfashion │ │ │ ├── hrnet_deepfashion.md │ │ │ ├── hrnet_deepfashion.yml │ │ │ ├── resnet_deepfashion.md │ │ │ ├── resnet_deepfashion.yml │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_hrnet-w32_8xb64-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_hrnet-w32_udp_8xb64-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_hrnet-w32_udp_8xb64-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_hrnet-w32_udp_8xb64-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_hrnet-w48_8xb32-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_hrnet-w48_udp_8xb32-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_hrnet-w48_udp_8xb32-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_hrnet-w48_udp_8xb32-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_res101_8xb64-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_res101_8xb64-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_res101_8xb64-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_res152_8xb32-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_res152_8xb32-210e_deepfashion_lower-256x192.py │ │ │ ├── td-hm_res152_8xb32-210e_deepfashion_upper-256x192.py │ │ │ ├── td-hm_res50_8xb64-210e_deepfashion_full-256x192.py │ │ │ ├── td-hm_res50_8xb64-210e_deepfashion_lower-256x192.py │ │ │ └── td-hm_res50_8xb64-210e_deepfashion_upper-256x192.py │ │ │ └── deepfashion2 │ │ │ ├── res50_deepfashion2.md │ │ │ ├── res50_deepfasion2.yml │ │ │ ├── td-hm_res50_1xb64-210e_deepfasion2-long-sleeved-dress-256x192.py │ │ │ ├── td-hm_res50_1xb64-210e_deepfasion2-skirt-256x192.py │ │ │ ├── td-hm_res50_1xb64-210e_deepfasion2-vest-dress-256x192.py │ │ │ ├── td-hm_res50_2xb64-210e_deepfasion2-trousers-256x192.py │ │ │ ├── td-hm_res50_3xb64-210e_deepfasion2-shorts-256x192.py │ │ │ ├── td-hm_res50_4xb64-210e_deepfasion2-short-sleeved-dress-256x192.py │ │ │ ├── td-hm_res50_4xb64-210e_deepfasion2-sling-256x192.py │ │ │ ├── td-hm_res50_4xb64-210e_deepfasion2-sling-dress-256x192.py │ │ │ ├── td-hm_res50_4xb64-210e_deepfasion2-vest-256x192.py │ │ │ ├── td-hm_res50_6xb64-210e_deepfasion2-short-sleeved-shirt-256x192.py │ │ │ ├── td-hm_res50_8xb64-210e_deepfasion2-long-sleeved-outwear-256x192.py │ │ │ ├── td-hm_res50_8xb64-210e_deepfasion2-long-sleeved-shirt-256x192.py │ │ │ └── td-hm_res50_8xb64-210e_deepfasion2-short-sleeved-outwear-256x192.py │ ├── hand_2d_keypoint │ │ ├── README.md │ │ ├── rtmpose │ │ │ ├── README.md │ │ │ ├── coco_wholebody_hand │ │ │ │ ├── rtmpose-m_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── rtmpose_coco_wholebody_hand.md │ │ │ │ └── rtmpose_coco_wholebody_hand.yml │ │ │ └── hand5 │ │ │ │ ├── rtmpose-m_8xb256-210e_hand5-256x256.py │ │ │ │ ├── rtmpose_hand5.md │ │ │ │ └── rtmpose_hand5.yml │ │ ├── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── coco_wholebody_hand │ │ │ │ ├── hourglass_coco_wholebody_hand.md │ │ │ │ ├── hourglass_coco_wholebody_hand.yml │ │ │ │ ├── hrnetv2_coco_wholebody_hand.md │ │ │ │ ├── hrnetv2_coco_wholebody_hand.yml │ │ │ │ ├── hrnetv2_dark_coco_wholebody_hand.md │ │ │ │ ├── hrnetv2_dark_coco_wholebody_hand.yml │ │ │ │ ├── litehrnet_coco_wholebody_hand.md │ │ │ │ ├── litehrnet_coco_wholebody_hand.yml │ │ │ │ ├── mobilenetv2_coco_wholebody_hand.md │ │ │ │ ├── mobilenetv2_coco_wholebody_hand.yml │ │ │ │ ├── resnet_coco_wholebody_hand.md │ │ │ │ ├── resnet_coco_wholebody_hand.yml │ │ │ │ ├── scnet_coco_wholebody_hand.md │ │ │ │ ├── scnet_coco_wholebody_hand.yml │ │ │ │ ├── td-hm_hourglass52_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_dark-8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── td-hm_litehrnet-w18_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── td-hm_mobilenetv2_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ ├── td-hm_res50_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ │ └── td-hm_scnet50_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ ├── freihand2d │ │ │ │ ├── resnet_freihand2d.md │ │ │ │ ├── resnet_freihand2d.yml │ │ │ │ └── td-hm_res50_8xb64-100e_freihand2d-224x224.py │ │ │ ├── onehand10k │ │ │ │ ├── hrnetv2_dark_onehand10k.md │ │ │ │ ├── hrnetv2_dark_onehand10k.yml │ │ │ │ ├── hrnetv2_onehand10k.md │ │ │ │ ├── hrnetv2_onehand10k.yml │ │ │ │ ├── hrnetv2_udp_onehand10k.md │ │ │ │ ├── hrnetv2_udp_onehand10k.yml │ │ │ │ ├── mobilenetv2_onehand10k.md │ │ │ │ ├── mobilenetv2_onehand10k.yml │ │ │ │ ├── resnet_onehand10k.md │ │ │ │ ├── resnet_onehand10k.yml │ │ │ │ ├── td-hm_hrnetv2-w18_8xb64-210e_onehand10k-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_dark-8xb64-210e_onehand10k-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_udp-8xb64-210e_onehand10k-256x256.py │ │ │ │ ├── td-hm_mobilenetv2_8xb64-210e_onehand10k-256x256.py │ │ │ │ └── td-hm_res50_8xb32-210e_onehand10k-256x256.py │ │ │ └── rhd2d │ │ │ │ ├── hrnetv2_dark_rhd2d.md │ │ │ │ ├── hrnetv2_dark_rhd2d.yml │ │ │ │ ├── hrnetv2_rhd2d.md │ │ │ │ ├── hrnetv2_rhd2d.yml │ │ │ │ ├── hrnetv2_udp_rhd2d.md │ │ │ │ ├── hrnetv2_udp_rhd2d.yml │ │ │ │ ├── mobilenetv2_rhd2d.md │ │ │ │ ├── mobilenetv2_rhd2d.yml │ │ │ │ ├── resnet_rhd2d.md │ │ │ │ ├── resnet_rhd2d.yml │ │ │ │ ├── td-hm_hrnetv2-w18_8xb64-210e_rhd2d-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_dark-8xb64-210e_rhd2d-256x256.py │ │ │ │ ├── td-hm_hrnetv2-w18_udp-8xb64-210e_rhd2d-256x256.py │ │ │ │ ├── td-hm_mobilenetv2_8xb64-210e_rhd2d-256x256.py │ │ │ │ └── td-hm_res50_8xb64-210e_rhd2d-256x256.py │ │ └── topdown_regression │ │ │ ├── README.md │ │ │ ├── onehand10k │ │ │ ├── resnet_onehand10k.md │ │ │ ├── resnet_onehand10k.yml │ │ │ └── td-reg_res50_8xb64-210e_onehand10k-256x256.py │ │ │ └── rhd2d │ │ │ ├── resnet_rhd2d.md │ │ │ ├── resnet_rhd2d.yml │ │ │ └── td-reg_res50_8xb64-210e_rhd2d-256x256.py │ ├── hand_3d_keypoint │ │ ├── README.md │ │ └── internet │ │ │ ├── README.md │ │ │ └── interhand3d │ │ │ ├── internet_interhand3d.md │ │ │ ├── internet_interhand3d.yml │ │ │ └── internet_res50_4xb16-20e_interhand3d-256x256.py │ ├── hand_gesture │ │ └── README.md │ └── wholebody_2d_keypoint │ │ ├── README.md │ │ ├── dwpose │ │ ├── README.md │ │ ├── coco-wholebody │ │ │ ├── s1_dis │ │ │ │ ├── dwpose_l_dis_m_coco-256x192.py │ │ │ │ └── dwpose_x_dis_l_coco-384x288.py │ │ │ └── s2_dis │ │ │ │ ├── dwpose_l-ll_coco-384x288.py │ │ │ │ └── dwpose_m-mm_coco-256x192.py │ │ └── ubody │ │ │ ├── s1_dis │ │ │ ├── dwpose_l_dis_m_coco-ubody-256x192.py │ │ │ ├── dwpose_l_dis_s_coco-ubody-256x192.py │ │ │ ├── dwpose_l_dis_t_coco-ubody-256x192.py │ │ │ ├── dwpose_x_dis_l_coco-ubody-256x192.py │ │ │ └── rtmpose_x_dis_l_coco-ubody-384x288.py │ │ │ └── s2_dis │ │ │ ├── dwpose_l-ll_coco-ubody-256x192.py │ │ │ ├── dwpose_l-ll_coco-ubody-384x288.py │ │ │ ├── dwpose_m-mm_coco-ubody-256x192.py │ │ │ ├── dwpose_s-ss_coco-ubody-256x192.py │ │ │ └── dwpose_t-tt_coco-ubody-256x192.py │ │ ├── rtmpose │ │ ├── README.md │ │ ├── cocktail14 │ │ │ ├── rtmw-l_8xb1024-270e_cocktail14-256x192.py │ │ │ ├── rtmw-l_8xb320-270e_cocktail14-384x288.py │ │ │ ├── rtmw-m_8xb1024-270e_cocktail14-256x192.py │ │ │ ├── rtmw-x_8xb320-270e_cocktail14-384x288.py │ │ │ ├── rtmw-x_8xb704-270e_cocktail14-256x192.py │ │ │ ├── rtmw_cocktail14.md │ │ │ └── rtmw_cocktail14.yml │ │ ├── coco-wholebody │ │ │ ├── rtmpose-l_8xb32-270e_coco-wholebody-384x288.py │ │ │ ├── rtmpose-l_8xb64-270e_coco-wholebody-256x192.py │ │ │ ├── rtmpose-m_8xb64-270e_coco-wholebody-256x192.py │ │ │ ├── rtmpose-x_8xb32-270e_coco-wholebody-384x288.py │ │ │ ├── rtmpose_coco-wholebody.md │ │ │ └── rtmpose_coco-wholebody.yml │ │ └── ubody │ │ │ ├── rtmpose-l_8xb32-270e_coco-ubody-wholebody-384x288.py │ │ │ ├── rtmpose-l_8xb64-270e_coco-ubody-wholebody-256x192.py │ │ │ ├── rtmpose-m_8xb64-270e_coco-ubody-wholebody-256x192.py │ │ │ ├── rtmpose-s_8xb64-270e_coco-ubody-wholebody-256x192.py │ │ │ ├── rtmpose-t_8xb64-270e_coco-ubody-wholebody-256x192.py │ │ │ ├── rtmpose-x_8xb32-270e_coco-ubody-wholebody-384x288.py │ │ │ └── rtmpose-x_8xb64-270e_coco-ubody-wholebody-256x192.py │ │ └── topdown_heatmap │ │ ├── README.md │ │ ├── coco-wholebody │ │ ├── cspnext-l_udp_8xb64-210e_coco-wholebody-256x192.py │ │ ├── cspnext-m_udp_8xb64-210e_coco-wholebody-256x192.py │ │ ├── cspnext_udp_coco-wholebody.md │ │ ├── cspnext_udp_coco-wholebody.yml │ │ ├── hrnet_coco-wholebody.md │ │ ├── hrnet_coco-wholebody.yml │ │ ├── hrnet_dark_coco-wholebody.md │ │ ├── hrnet_dark_coco-wholebody.yml │ │ ├── resnet_coco-wholebody.md │ │ ├── resnet_coco-wholebody.yml │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_hrnet-w32_8xb64-210e_coco-wholebody-384x288.py │ │ ├── td-hm_hrnet-w32_dark-8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_hrnet-w48_8xb32-210e_coco-wholebody-256x192.py │ │ ├── td-hm_hrnet-w48_8xb32-210e_coco-wholebody-384x288.py │ │ ├── td-hm_hrnet-w48_dark-8xb32-210e_coco-wholebody-384x288.py │ │ ├── td-hm_res101_8xb32-210e_coco-wholebody-256x192.py │ │ ├── td-hm_res101_8xb32-210e_coco-wholebody-384x288.py │ │ ├── td-hm_res152_8xb32-210e_coco-wholebody-256x192.py │ │ ├── td-hm_res152_8xb32-210e_coco-wholebody-384x288.py │ │ ├── td-hm_res50_8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_res50_8xb64-210e_coco-wholebody-384x288.py │ │ ├── td-hm_vipnas-mbv3_8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_vipnas-mbv3_dark-8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_vipnas-res50_8xb64-210e_coco-wholebody-256x192.py │ │ ├── td-hm_vipnas-res50_dark-8xb64-210e_coco-wholebody-256x192.py │ │ ├── vipnas_coco-wholebody.md │ │ ├── vipnas_coco-wholebody.yml │ │ ├── vipnas_dark_coco-wholebody.md │ │ └── vipnas_dark_coco-wholebody.yml │ │ └── ubody2d │ │ ├── hrnet_coco-wholebody.yml │ │ ├── hrnet_ubody-coco-wholebody.md │ │ └── td-hm_hrnet-w32_8xb64-210e_ubody-256x192.py ├── dataset-index.yml ├── demo │ ├── body3d_pose_lifter_demo.py │ ├── bottomup_demo.py │ ├── docs │ │ ├── en │ │ │ ├── 2d_animal_demo.md │ │ │ ├── 2d_face_demo.md │ │ │ ├── 2d_hand_demo.md │ │ │ ├── 2d_human_pose_demo.md │ │ │ ├── 2d_wholebody_pose_demo.md │ │ │ ├── 3d_hand_demo.md │ │ │ ├── 3d_human_pose_demo.md │ │ │ ├── mmdet_modelzoo.md │ │ │ └── webcam_api_demo.md │ │ └── zh_cn │ │ │ ├── 2d_animal_demo.md │ │ │ ├── 2d_face_demo.md │ │ │ ├── 2d_hand_demo.md │ │ │ ├── 2d_human_pose_demo.md │ │ │ ├── 2d_wholebody_pose_demo.md │ │ │ ├── 3d_human_pose_demo.md │ │ │ ├── mmdet_modelzoo.md │ │ │ └── webcam_api_demo.md │ ├── hand3d_internet_demo.py │ ├── image_demo.py │ ├── inferencer_demo.py │ ├── mmdetection_cfg │ │ ├── cascade_rcnn_x101_64x4d_fpn_1class.py │ │ ├── cascade_rcnn_x101_64x4d_fpn_coco.py │ │ ├── faster_rcnn_r50_fpn_1class.py │ │ ├── faster_rcnn_r50_fpn_coco.py │ │ ├── mask_rcnn_r50_fpn_2x_coco.py │ │ ├── rtmdet_m_640-8xb32_coco-person.py │ │ ├── rtmdet_m_8xb32-300e_coco.py │ │ ├── rtmdet_nano_320-8xb32_coco-person.py │ │ ├── rtmdet_nano_320-8xb32_hand.py │ │ ├── rtmdet_tiny_8xb32-300e_coco.py │ │ ├── ssdlite_mobilenetv2-scratch_8xb24-600e_coco.py │ │ ├── ssdlite_mobilenetv2_scratch_600e_onehand.py │ │ ├── yolov3_d53_320_273e_coco.py │ │ └── yolox-s_8xb8-300e_coco-face.py │ ├── mmtracking_cfg │ │ ├── deepsort_faster-rcnn_fpn_4e_mot17-private-half.py │ │ └── tracktor_faster-rcnn_r50_fpn_4e_mot17-private.py │ ├── resources │ │ ├── demo.mp4 │ │ ├── demo_coco.gif │ │ └── sunglasses.jpg │ ├── save_pose_with_det_multiscene.py │ └── topdown_demo_with_mmdet.py ├── docker │ ├── Dockerfile │ └── serve │ │ ├── Dockerfile │ │ ├── config.properties │ │ └── entrypoint.sh ├── docs │ ├── en │ │ ├── Makefile │ │ ├── _static │ │ │ ├── css │ │ │ │ └── readthedocs.css │ │ │ └── images │ │ │ │ └── mmpose-logo.png │ │ ├── advanced_guides │ │ │ ├── codecs.md │ │ │ ├── customize_datasets.md │ │ │ ├── customize_evaluation.md │ │ │ ├── customize_logging.md │ │ │ ├── customize_optimizer.md │ │ │ ├── customize_transforms.md │ │ │ ├── dataflow.md │ │ │ └── implement_new_models.md │ │ ├── api.rst │ │ ├── collect_modelzoo.py │ │ ├── collect_projects.py │ │ ├── conf.py │ │ ├── contribution_guide.md │ │ ├── dataset_zoo │ │ │ ├── 2d_animal_keypoint.md │ │ │ ├── 2d_body_keypoint.md │ │ │ ├── 2d_face_keypoint.md │ │ │ ├── 2d_fashion_landmark.md │ │ │ ├── 2d_hand_keypoint.md │ │ │ ├── 2d_wholebody_keypoint.md │ │ │ ├── 3d_body_keypoint.md │ │ │ ├── 3d_body_mesh.md │ │ │ ├── 3d_hand_keypoint.md │ │ │ └── 3d_wholebody_keypoint.md │ │ ├── faq.md │ │ ├── guide_to_framework.md │ │ ├── index.rst │ │ ├── installation.md │ │ ├── make.bat │ │ ├── merge_docs.sh │ │ ├── migration.md │ │ ├── notes │ │ │ ├── benchmark.md │ │ │ ├── changelog.md │ │ │ ├── ecosystem.md │ │ │ └── pytorch_2.md │ │ ├── overview.md │ │ ├── projects │ │ │ └── projects.md │ │ ├── quick_run.md │ │ ├── stats.py │ │ ├── switch_language.md │ │ ├── user_guides │ │ │ ├── configs.md │ │ │ ├── dataset_tools.md │ │ │ ├── how_to_deploy.md │ │ │ ├── inference.md │ │ │ ├── label_studio.md │ │ │ ├── mixed_datasets.md │ │ │ ├── model_analysis.md │ │ │ ├── prepare_datasets.md │ │ │ └── train_and_test.md │ │ └── visualization.md │ ├── src │ │ └── papers │ │ │ ├── algorithms │ │ │ ├── associative_embedding.md │ │ │ ├── awingloss.md │ │ │ ├── cid.md │ │ │ ├── cpm.md │ │ │ ├── dark.md │ │ │ ├── debias_ipr.md │ │ │ ├── deeppose.md │ │ │ ├── dekr.md │ │ │ ├── dsnt.md │ │ │ ├── dwpose.md │ │ │ ├── edpose.md │ │ │ ├── higherhrnet.md │ │ │ ├── hmr.md │ │ │ ├── hourglass.md │ │ │ ├── hrnet.md │ │ │ ├── hrnetv2.md │ │ │ ├── internet.md │ │ │ ├── ipr.md │ │ │ ├── litehrnet.md │ │ │ ├── motionbert.md │ │ │ ├── mspn.md │ │ │ ├── posewarper.md │ │ │ ├── rle.md │ │ │ ├── rsn.md │ │ │ ├── rtmo.md │ │ │ ├── rtmpose.md │ │ │ ├── scnet.md │ │ │ ├── simcc.md │ │ │ ├── simplebaseline2d.md │ │ │ ├── simplebaseline3d.md │ │ │ ├── softwingloss.md │ │ │ ├── udp.md │ │ │ ├── videopose3d.md │ │ │ ├── vipnas.md │ │ │ ├── vitpose.md │ │ │ ├── voxelpose.md │ │ │ ├── wingloss.md │ │ │ └── yolopose.md │ │ │ ├── backbones │ │ │ ├── alexnet.md │ │ │ ├── cpm.md │ │ │ ├── higherhrnet.md │ │ │ ├── hourglass.md │ │ │ ├── hrformer.md │ │ │ ├── hrnet.md │ │ │ ├── hrnetv2.md │ │ │ ├── litehrnet.md │ │ │ ├── mobilenetv2.md │ │ │ ├── mspn.md │ │ │ ├── pvt.md │ │ │ ├── pvtv2.md │ │ │ ├── resnest.md │ │ │ ├── resnet.md │ │ │ ├── resnetv1d.md │ │ │ ├── resnext.md │ │ │ ├── rsn.md │ │ │ ├── scnet.md │ │ │ ├── seresnet.md │ │ │ ├── shufflenetv1.md │ │ │ ├── shufflenetv2.md │ │ │ ├── swin.md │ │ │ ├── vgg.md │ │ │ └── vipnas.md │ │ │ ├── datasets │ │ │ ├── 300w.md │ │ │ ├── 300wlp.md │ │ │ ├── aflw.md │ │ │ ├── aic.md │ │ │ ├── animalkingdom.md │ │ │ ├── animalpose.md │ │ │ ├── ap10k.md │ │ │ ├── atrw.md │ │ │ ├── campus_and_shelf.md │ │ │ ├── coco.md │ │ │ ├── coco_wholebody.md │ │ │ ├── coco_wholebody_face.md │ │ │ ├── coco_wholebody_hand.md │ │ │ ├── cofw.md │ │ │ ├── crowdpose.md │ │ │ ├── deepfashion.md │ │ │ ├── exlpose.md │ │ │ ├── fly.md │ │ │ ├── freihand.md │ │ │ ├── h36m.md │ │ │ ├── halpe.md │ │ │ ├── horse10.md │ │ │ ├── human_art.md │ │ │ ├── interhand.md │ │ │ ├── jhmdb.md │ │ │ ├── lapa.md │ │ │ ├── locust.md │ │ │ ├── macaque.md │ │ │ ├── mhp.md │ │ │ ├── mpi_inf_3dhp.md │ │ │ ├── mpii.md │ │ │ ├── mpii_trb.md │ │ │ ├── ochuman.md │ │ │ ├── onehand10k.md │ │ │ ├── panoptic.md │ │ │ ├── panoptic_body3d.md │ │ │ ├── posetrack18.md │ │ │ ├── rhd.md │ │ │ ├── ubody.md │ │ │ ├── wflw.md │ │ │ └── zebra.md │ │ │ └── techniques │ │ │ ├── albumentations.md │ │ │ ├── awingloss.md │ │ │ ├── dark.md │ │ │ ├── fp16.md │ │ │ ├── fpn.md │ │ │ ├── rle.md │ │ │ ├── smoothnet.md │ │ │ ├── softwingloss.md │ │ │ ├── udp.md │ │ │ └── wingloss.md │ └── zh_cn │ │ ├── Makefile │ │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── images │ │ │ └── mmpose-logo.png │ │ ├── advanced_guides │ │ ├── codecs.md │ │ ├── customize_datasets.md │ │ ├── customize_evaluation.md │ │ ├── customize_logging.md │ │ ├── customize_optimizer.md │ │ ├── customize_transforms.md │ │ ├── dataflow.md │ │ └── implement_new_models.md │ │ ├── api.rst │ │ ├── collect_modelzoo.py │ │ ├── collect_projects.py │ │ ├── conf.py │ │ ├── contribution_guide.md │ │ ├── dataset_zoo │ │ ├── 2d_animal_keypoint.md │ │ ├── 2d_body_keypoint.md │ │ ├── 2d_face_keypoint.md │ │ ├── 2d_fashion_landmark.md │ │ ├── 2d_hand_keypoint.md │ │ ├── 2d_wholebody_keypoint.md │ │ ├── 3d_body_keypoint.md │ │ ├── 3d_body_mesh.md │ │ └── 3d_hand_keypoint.md │ │ ├── faq.md │ │ ├── guide_to_framework.md │ │ ├── index.rst │ │ ├── installation.md │ │ ├── make.bat │ │ ├── merge_docs.sh │ │ ├── migration.md │ │ ├── notes │ │ ├── changelog.md │ │ ├── ecosystem.md │ │ ├── projects.md │ │ └── pytorch_2.md │ │ ├── overview.md │ │ ├── quick_run.md │ │ ├── stats.py │ │ ├── switch_language.md │ │ └── user_guides │ │ ├── configs.md │ │ ├── dataset_tools.md │ │ ├── how_to_deploy.md │ │ ├── inference.md │ │ ├── label_studio.md │ │ ├── mixed_datasets.md │ │ ├── model_analysis.md │ │ ├── prepare_datasets.md │ │ └── train_and_test.md ├── examples │ └── 88.jpg ├── mmpose │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── inference.py │ │ ├── inference_3d.py │ │ ├── inference_tracking.py │ │ ├── inferencers │ │ │ ├── __init__.py │ │ │ ├── base_mmpose_inferencer.py │ │ │ ├── hand3d_inferencer.py │ │ │ ├── mmpose_inferencer.py │ │ │ ├── pose2d_inferencer.py │ │ │ ├── pose3d_inferencer.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── default_det_models.py │ │ │ │ └── get_model_alias.py │ │ └── visualization.py │ ├── codecs │ │ ├── __init__.py │ │ ├── annotation_processors.py │ │ ├── associative_embedding.py │ │ ├── base.py │ │ ├── decoupled_heatmap.py │ │ ├── edpose_label.py │ │ ├── hand_3d_heatmap.py │ │ ├── image_pose_lifting.py │ │ ├── integral_regression_label.py │ │ ├── megvii_heatmap.py │ │ ├── motionbert_label.py │ │ ├── msra_heatmap.py │ │ ├── regression_label.py │ │ ├── simcc_label.py │ │ ├── spr.py │ │ ├── udp_heatmap.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── camera_image_projection.py │ │ │ ├── gaussian_heatmap.py │ │ │ ├── instance_property.py │ │ │ ├── offset_heatmap.py │ │ │ ├── post_processing.py │ │ │ └── refinement.py │ │ └── video_pose_lifting.py │ ├── configs │ │ ├── _base_ │ │ │ └── default_runtime.py │ │ ├── body_2d_keypoint │ │ │ ├── rtmpose │ │ │ │ └── coco │ │ │ │ │ ├── rtmpose_m_8xb256-420e_coco-256x192.py │ │ │ │ │ └── rtmpose_s_8xb256_420e_aic_coco_256x192.py │ │ │ └── topdown_heatmap │ │ │ │ └── coco │ │ │ │ └── td-hm_hrnet-w48_udp-8xb32-210e_coco-256x192.py │ │ └── wholebody_2d_keypoint │ │ │ └── rtmpose │ │ │ └── cocktail13 │ │ │ ├── rtmw-l_8xb1024-270e_cocktail14-256x192.py │ │ │ ├── rtmw-l_8xb320-270e_cocktail14-384x288.py │ │ │ ├── rtmw-m_8xb1024-270e_cocktail14-256x192.py │ │ │ ├── rtmw-x_8xb320-270e_cocktail14-384x288.py │ │ │ └── rtmw-x_8xb704-270e_cocktail14-256x192.py │ ├── datasets │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── dataset_wrappers.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── animal │ │ │ │ ├── __init__.py │ │ │ │ ├── animalkingdom_dataset.py │ │ │ │ ├── animalpose_dataset.py │ │ │ │ ├── ap10k_dataset.py │ │ │ │ ├── atrw_dataset.py │ │ │ │ ├── fly_dataset.py │ │ │ │ ├── horse10_dataset.py │ │ │ │ ├── locust_dataset.py │ │ │ │ ├── macaque_dataset.py │ │ │ │ └── zebra_dataset.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── base_coco_style_dataset.py │ │ │ │ └── base_mocap_dataset.py │ │ │ ├── body │ │ │ │ ├── __init__.py │ │ │ │ ├── aic_dataset.py │ │ │ │ ├── coco_dataset.py │ │ │ │ ├── crowdpose_dataset.py │ │ │ │ ├── exlpose_dataset.py │ │ │ │ ├── humanart21_dataset.py │ │ │ │ ├── humanart_dataset.py │ │ │ │ ├── jhmdb_dataset.py │ │ │ │ ├── mhp_dataset.py │ │ │ │ ├── mpii_dataset.py │ │ │ │ ├── mpii_trb_dataset.py │ │ │ │ ├── ochuman_dataset.py │ │ │ │ ├── posetrack18_dataset.py │ │ │ │ └── posetrack18_video_dataset.py │ │ │ ├── body3d │ │ │ │ ├── __init__.py │ │ │ │ └── h36m_dataset.py │ │ │ ├── face │ │ │ │ ├── __init__.py │ │ │ │ ├── aflw_dataset.py │ │ │ │ ├── coco_wholebody_face_dataset.py │ │ │ │ ├── cofw_dataset.py │ │ │ │ ├── face_300w_dataset.py │ │ │ │ ├── face_300wlp_dataset.py │ │ │ │ ├── lapa_dataset.py │ │ │ │ └── wflw_dataset.py │ │ │ ├── fashion │ │ │ │ ├── __init__.py │ │ │ │ ├── deepfashion2_dataset.py │ │ │ │ └── deepfashion_dataset.py │ │ │ ├── hand │ │ │ │ ├── __init__.py │ │ │ │ ├── coco_wholebody_hand_dataset.py │ │ │ │ ├── freihand_dataset.py │ │ │ │ ├── interhand2d_double_dataset.py │ │ │ │ ├── onehand10k_dataset.py │ │ │ │ ├── panoptic_hand2d_dataset.py │ │ │ │ └── rhd2d_dataset.py │ │ │ ├── hand3d │ │ │ │ ├── __init__.py │ │ │ │ └── interhand_3d_dataset.py │ │ │ ├── utils.py │ │ │ ├── wholebody │ │ │ │ ├── __init__.py │ │ │ │ ├── coco_wholebody_dataset.py │ │ │ │ ├── halpe_dataset.py │ │ │ │ └── ubody2d_dataset.py │ │ │ └── wholebody3d │ │ │ │ ├── __init__.py │ │ │ │ ├── h3wb_dataset.py │ │ │ │ └── ubody3d_dataset.py │ │ ├── samplers.py │ │ └── transforms │ │ │ ├── __init__.py │ │ │ ├── bottomup_transforms.py │ │ │ ├── common_transforms.py │ │ │ ├── converting.py │ │ │ ├── formatting.py │ │ │ ├── hand_transforms.py │ │ │ ├── loading.py │ │ │ ├── mix_img_transforms.py │ │ │ ├── pose3d_transforms.py │ │ │ └── topdown_transforms.py │ ├── engine │ │ ├── __init__.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── badcase_hook.py │ │ │ ├── ema_hook.py │ │ │ ├── mode_switch_hooks.py │ │ │ ├── sync_norm_hook.py │ │ │ └── visualization_hook.py │ │ ├── optim_wrappers │ │ │ ├── __init__.py │ │ │ ├── force_default_constructor.py │ │ │ └── layer_decay_optim_wrapper.py │ │ └── schedulers │ │ │ ├── __init__.py │ │ │ ├── constant_lr.py │ │ │ └── quadratic_warmup.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── evaluators │ │ │ ├── __init__.py │ │ │ └── mutli_dataset_evaluator.py │ │ ├── functional │ │ │ ├── __init__.py │ │ │ ├── keypoint_eval.py │ │ │ ├── mesh_eval.py │ │ │ ├── nms.py │ │ │ └── transforms.py │ │ └── metrics │ │ │ ├── __init__.py │ │ │ ├── coco_metric.py │ │ │ ├── coco_wholebody_metric.py │ │ │ ├── hand_metric.py │ │ │ ├── keypoint_2d_metrics.py │ │ │ ├── keypoint_3d_metrics.py │ │ │ ├── keypoint_partition_metric.py │ │ │ ├── posetrack18_metric.py │ │ │ └── simple_keypoint_3d_metrics.py │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── alexnet.py │ │ │ ├── base_backbone.py │ │ │ ├── cpm.py │ │ │ ├── csp_darknet.py │ │ │ ├── cspnext.py │ │ │ ├── dstformer.py │ │ │ ├── hourglass.py │ │ │ ├── hourglass_ae.py │ │ │ ├── hrformer.py │ │ │ ├── hrnet.py │ │ │ ├── litehrnet.py │ │ │ ├── mobilenet_v2.py │ │ │ ├── mobilenet_v3.py │ │ │ ├── mspn.py │ │ │ ├── pvt.py │ │ │ ├── regnet.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnext.py │ │ │ ├── rsn.py │ │ │ ├── scnet.py │ │ │ ├── seresnet.py │ │ │ ├── seresnext.py │ │ │ ├── shufflenet_v1.py │ │ │ ├── shufflenet_v2.py │ │ │ ├── swin.py │ │ │ ├── tcn.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── channel_shuffle.py │ │ │ │ ├── ckpt_convert.py │ │ │ │ ├── inverted_residual.py │ │ │ │ ├── make_divisible.py │ │ │ │ ├── se_layer.py │ │ │ │ └── utils.py │ │ │ ├── v2v_net.py │ │ │ ├── vgg.py │ │ │ ├── vipnas_mbv3.py │ │ │ └── vipnas_resnet.py │ │ ├── builder.py │ │ ├── data_preprocessors │ │ │ ├── __init__.py │ │ │ ├── batch_augmentation.py │ │ │ └── data_preprocessor.py │ │ ├── distillers │ │ │ ├── __init__.py │ │ │ └── dwpose_distiller.py │ │ ├── heads │ │ │ ├── __init__.py │ │ │ ├── base_head.py │ │ │ ├── coord_cls_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── rtmcc_head.py │ │ │ │ ├── rtmw_head.py │ │ │ │ └── simcc_head.py │ │ │ ├── heatmap_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── ae_head.py │ │ │ │ ├── cid_head.py │ │ │ │ ├── cpm_head.py │ │ │ │ ├── heatmap_head.py │ │ │ │ ├── internet_head.py │ │ │ │ ├── mspn_head.py │ │ │ │ └── vipnas_head.py │ │ │ ├── hybrid_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── dekr_head.py │ │ │ │ ├── rtmo_head.py │ │ │ │ ├── vis_head.py │ │ │ │ └── yoloxpose_head.py │ │ │ ├── regression_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── dsnt_head.py │ │ │ │ ├── integral_regression_head.py │ │ │ │ ├── motion_regression_head.py │ │ │ │ ├── regression_head.py │ │ │ │ ├── rle_head.py │ │ │ │ ├── temporal_regression_head.py │ │ │ │ └── trajectory_regression_head.py │ │ │ └── transformer_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── base_transformer_head.py │ │ │ │ ├── edpose_head.py │ │ │ │ └── transformers │ │ │ │ ├── __init__.py │ │ │ │ ├── deformable_detr_layers.py │ │ │ │ ├── detr_layers.py │ │ │ │ └── utils.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── ae_loss.py │ │ │ ├── bbox_loss.py │ │ │ ├── classification_loss.py │ │ │ ├── fea_dis_loss.py │ │ │ ├── heatmap_loss.py │ │ │ ├── logit_dis_loss.py │ │ │ ├── loss_wrappers.py │ │ │ └── regression_loss.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── channel_mapper.py │ │ │ ├── cspnext_pafpn.py │ │ │ ├── fmap_proc_neck.py │ │ │ ├── fpn.py │ │ │ ├── gap_neck.py │ │ │ ├── hybrid_encoder.py │ │ │ ├── posewarper_neck.py │ │ │ └── yolox_pafpn.py │ │ ├── pose_estimators │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bottomup.py │ │ │ ├── pose_lifter.py │ │ │ └── topdown.py │ │ ├── task_modules │ │ │ ├── __init__.py │ │ │ ├── assigners │ │ │ │ ├── __init__.py │ │ │ │ ├── metric_calculators.py │ │ │ │ └── sim_ota_assigner.py │ │ │ └── prior_generators │ │ │ │ ├── __init__.py │ │ │ │ └── mlvl_point_generator.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── check_and_update_config.py │ │ │ ├── ckpt_convert.py │ │ │ ├── csp_layer.py │ │ │ ├── geometry.py │ │ │ ├── misc.py │ │ │ ├── ops.py │ │ │ ├── realnvp.py │ │ │ ├── regularizations.py │ │ │ ├── reparam_layers.py │ │ │ ├── rtmcc_block.py │ │ │ ├── transformer.py │ │ │ └── tta.py │ ├── registry.py │ ├── structures │ │ ├── __init__.py │ │ ├── bbox │ │ │ ├── __init__.py │ │ │ ├── bbox_overlaps.py │ │ │ └── transforms.py │ │ ├── keypoint │ │ │ ├── __init__.py │ │ │ └── transforms.py │ │ ├── multilevel_pixel_data.py │ │ ├── pose_data_sample.py │ │ └── utils.py │ ├── testing │ │ ├── __init__.py │ │ └── _utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── camera.py │ │ ├── collect_env.py │ │ ├── config_utils.py │ │ ├── dist_utils.py │ │ ├── hooks.py │ │ ├── logger.py │ │ ├── setup_env.py │ │ ├── tensor_utils.py │ │ ├── timer.py │ │ └── typing.py │ ├── version.py │ └── visualization │ │ ├── __init__.py │ │ ├── fast_visualizer.py │ │ ├── local_visualizer.py │ │ ├── local_visualizer_3d.py │ │ ├── opencv_backend_visualizer.py │ │ └── simcc_vis.py ├── model-index.yml ├── projects │ ├── README.md │ ├── awesome-mmpose │ │ └── README.md │ ├── example_project │ │ ├── README.md │ │ ├── configs │ │ │ └── example-head-loss_hrnet-w32_8xb64-210e_coco-256x192.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── example_head.py │ │ │ └── example_loss.py │ ├── faq.md │ ├── just_dance │ │ ├── README.md │ │ ├── app.py │ │ ├── calculate_similarity.py │ │ ├── configs │ │ │ └── rtmdet-nano_one-person.py │ │ ├── just_dance_demo.ipynb │ │ ├── process_video.py │ │ └── utils.py │ ├── mmpose4aigc │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── download_models.sh │ │ ├── install_posetracker_linux.sh │ │ ├── mmpose_openpose.sh │ │ ├── mmpose_style_skeleton.sh │ │ └── openpose_visualization.py │ ├── pose_anything │ │ ├── README.md │ │ ├── configs │ │ │ ├── demo.py │ │ │ └── demo_b.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ ├── datasets │ │ │ │ ├── __init__.py │ │ │ │ └── mp100 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fewshot_base_dataset.py │ │ │ │ │ ├── fewshot_dataset.py │ │ │ │ │ ├── test_base_dataset.py │ │ │ │ │ ├── test_dataset.py │ │ │ │ │ ├── transformer_base_dataset.py │ │ │ │ │ └── transformer_dataset.py │ │ │ └── pipelines │ │ │ │ ├── __init__.py │ │ │ │ ├── post_transforms.py │ │ │ │ └── top_down_transform.py │ │ ├── demo.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── simmim.py │ │ │ │ ├── swin_mlp.py │ │ │ │ ├── swin_transformer.py │ │ │ │ ├── swin_transformer_moe.py │ │ │ │ ├── swin_transformer_v2.py │ │ │ │ └── swin_utils.py │ │ │ ├── detectors │ │ │ │ ├── __init__.py │ │ │ │ └── pam.py │ │ │ ├── keypoint_heads │ │ │ │ ├── __init__.py │ │ │ │ └── head.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ ├── encoder_decoder.py │ │ │ │ ├── positional_encoding.py │ │ │ │ └── transformer.py │ │ └── tools │ │ │ └── visualization.py │ ├── rtmo │ │ └── README.md │ ├── rtmpose │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── app.py │ │ ├── benchmark │ │ │ ├── README.md │ │ │ └── README_CN.md │ │ ├── examples │ │ │ ├── PoseTracker-Android-Prototype │ │ │ │ └── README.md │ │ │ ├── README.md │ │ │ ├── RTMPose-Deploy │ │ │ │ ├── README.md │ │ │ │ ├── README_CN.md │ │ │ │ └── Windows │ │ │ │ │ ├── OnnxRumtime-CPU │ │ │ │ │ └── src │ │ │ │ │ │ └── RTMPoseOnnxRuntime │ │ │ │ │ │ ├── characterset_convert.h │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── rtmdet_onnxruntime.cpp │ │ │ │ │ │ ├── rtmdet_onnxruntime.h │ │ │ │ │ │ ├── rtmpose_onnxruntime.cpp │ │ │ │ │ │ ├── rtmpose_onnxruntime.h │ │ │ │ │ │ ├── rtmpose_tracker_onnxruntime.cpp │ │ │ │ │ │ ├── rtmpose_tracker_onnxruntime.h │ │ │ │ │ │ └── rtmpose_utils.h │ │ │ │ │ └── TensorRT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── python │ │ │ │ │ └── convert_rtmdet.py │ │ │ │ │ └── src │ │ │ │ │ └── RTMPoseTensorRT │ │ │ │ │ ├── inference.cpp │ │ │ │ │ ├── inference.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── rtmdet.cpp │ │ │ │ │ ├── rtmdet.h │ │ │ │ │ ├── rtmpose.cpp │ │ │ │ │ ├── rtmpose.h │ │ │ │ │ ├── utils.cpp │ │ │ │ │ └── utils.h │ │ │ └── onnxruntime │ │ │ │ ├── README.md │ │ │ │ ├── README_CN.md │ │ │ │ ├── human-pose.jpeg │ │ │ │ ├── main.py │ │ │ │ └── requirements.txt │ │ ├── rtmdet │ │ │ ├── README.md │ │ │ ├── hand │ │ │ │ └── rtmdet_nano_320-8xb32_hand.py │ │ │ └── person │ │ │ │ ├── humanart_detection.py │ │ │ │ ├── rtmdet_l_8xb32-300e_humanart.py │ │ │ │ ├── rtmdet_m_640-8xb32_coco-person.py │ │ │ │ ├── rtmdet_m_8xb32-300e_humanart.py │ │ │ │ ├── rtmdet_nano_320-8xb32_coco-person.py │ │ │ │ ├── rtmdet_s_8xb32-300e_humanart.py │ │ │ │ ├── rtmdet_tiny_8xb32-300e_humanart.py │ │ │ │ └── rtmdet_x_8xb32-300e_humanart.py │ │ ├── rtmpose │ │ │ ├── animal_2d_keypoint │ │ │ │ └── rtmpose-m_8xb64-210e_ap10k-256x256.py │ │ │ ├── body_2d_keypoint │ │ │ │ ├── rtmpose-l_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-l_8xb256-420e_coco-384x288.py │ │ │ │ ├── rtmpose-l_8xb512-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-l_8xb512-700e_body8-halpe26-384x288.py │ │ │ │ ├── rtmpose-m_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-m_8xb256-420e_coco-384x288.py │ │ │ │ ├── rtmpose-m_8xb512-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-m_8xb512-700e_body8-halpe26-384x288.py │ │ │ │ ├── rtmpose-s_8xb1024-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-s_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-t_8xb1024-700e_body8-halpe26-256x192.py │ │ │ │ ├── rtmpose-t_8xb256-420e_coco-256x192.py │ │ │ │ ├── rtmpose-x_8xb256-700e_body8-halpe26-384x288.py │ │ │ │ └── rtmpose-x_8xb256-700e_coco-384x288.py │ │ │ ├── face_2d_keypoint │ │ │ │ ├── rtmpose-m_8xb256-120e_lapa-256x256.py │ │ │ │ ├── rtmpose-s_8xb256-120e_lapa-256x256.py │ │ │ │ └── rtmpose-t_8xb256-120e_lapa-256x256.py │ │ │ ├── hand_2d_keypoint │ │ │ │ └── rtmpose-m_8xb32-210e_coco-wholebody-hand-256x256.py │ │ │ ├── pretrain_cspnext_udp │ │ │ │ ├── cspnext-l_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext-m_udp_8xb256-210e_coco-256x192.py │ │ │ │ ├── cspnext-s_udp_8xb256-210e_coco-256x192.py │ │ │ │ └── cspnext-tiny_udp_8xb256-210e_coco-256x192.py │ │ │ ├── pruning │ │ │ │ ├── README.md │ │ │ │ ├── README_CN.md │ │ │ │ ├── group_fisher_deploy_rtmpose-s_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── group_fisher_deploy_rtmpose-s_8xb256-420e_coco-256x192.py │ │ │ │ ├── group_fisher_finetune_rtmpose-s_8xb256-420e_aic-coco-256x192.py │ │ │ │ ├── group_fisher_finetune_rtmpose-s_8xb256-420e_coco-256x192.py │ │ │ │ ├── group_fisher_prune_rtmpose-s_8xb256-420e_aic-coco-256x192.py │ │ │ │ └── group_fisher_prune_rtmpose-s_8xb256-420e_coco-256x192.py │ │ │ └── wholebody_2d_keypoint │ │ │ │ ├── rtmpose-l_8xb32-270e_coco-wholebody-384x288.py │ │ │ │ ├── rtmpose-l_8xb64-270e_coco-wholebody-256x192.py │ │ │ │ ├── rtmpose-m_8xb64-270e_coco-wholebody-256x192.py │ │ │ │ ├── rtmpose-s_8xb64-270e_coco-wholebody-256x192.py │ │ │ │ ├── rtmpose-t_8xb64-270e_coco-wholebody-256x192.py │ │ │ │ ├── rtmpose-x_8xb32-270e_coco-wholebody-384x288.py │ │ │ │ ├── rtmw-l_8xb1024-270e_cocktail14-256x192.py │ │ │ │ ├── rtmw-l_8xb320-270e_cocktail14-384x288.py │ │ │ │ ├── rtmw-m_8xb1024-270e_cocktail14-256x192.py │ │ │ │ ├── rtmw-x_8xb320-270e_cocktail14-384x288.py │ │ │ │ └── rtmw-x_8xb704-270e_cocktail14-256x192.py │ │ └── yolox │ │ │ └── humanart │ │ │ ├── yolox_l_8xb8-300e_humanart.py │ │ │ ├── yolox_m_8xb8-300e_humanart.py │ │ │ ├── yolox_nano_8xb8-300e_humanart.py │ │ │ ├── yolox_s_8xb8-300e_humanart.py │ │ │ ├── yolox_tiny_8xb8-300e_humanart.py │ │ │ └── yolox_x_8xb8-300e_humanart.py │ ├── skps │ │ ├── README.md │ │ ├── configs │ │ │ ├── td-hm_hrnetv2-w18_skps-1xb16-160e_cofw-256x256.py │ │ │ └── td-hm_hrnetv2-w18_skps-1xb64-80e_wflw-256x256.py │ │ ├── custom_codecs │ │ │ ├── __init__.py │ │ │ └── skps_heatmap.py │ │ └── models │ │ │ ├── __init__.py │ │ │ └── skps_head.py │ ├── uniformer │ │ ├── README.md │ │ ├── configs │ │ │ ├── td-hm_uniformer-b-8xb128-210e_coco-256x192.py │ │ │ ├── td-hm_uniformer-b-8xb32-210e_coco-384x288.py │ │ │ ├── td-hm_uniformer-b-8xb32-210e_coco-448x320.py │ │ │ ├── td-hm_uniformer-s-8xb128-210e_coco-256x192.py │ │ │ ├── td-hm_uniformer-s-8xb128-210e_coco-384x288.py │ │ │ └── td-hm_uniformer-s-8xb64-210e_coco-448x320.py │ │ └── models │ │ │ ├── __init__.py │ │ │ └── uniformer.py │ └── yolox_pose │ │ ├── README.md │ │ ├── configs │ │ ├── _base_ │ │ │ ├── default_runtime.py │ │ │ └── py_default_runtime.py │ │ ├── py_yolox_pose_s_8xb32_300e_coco.py │ │ ├── yolox-pose_l_4xb64-300e_coco.py │ │ ├── yolox-pose_m_4xb64-300e_coco.py │ │ ├── yolox-pose_s_8xb32-300e_coco.py │ │ └── yolox-pose_tiny_4xb64-300e_coco.py │ │ ├── datasets │ │ ├── __init__.py │ │ ├── bbox_keypoint_structure.py │ │ ├── coco_dataset.py │ │ └── transforms.py │ │ └── models │ │ ├── __init__.py │ │ ├── assigner.py │ │ ├── data_preprocessor.py │ │ ├── oks_loss.py │ │ ├── utils.py │ │ └── yolox_pose_head.py ├── pytest.ini ├── requirements.txt ├── requirements │ ├── albu.txt │ ├── build.txt │ ├── docs.txt │ ├── mminstall.txt │ ├── optional.txt │ ├── poseval.txt │ ├── readthedocs.txt │ ├── runtime.txt │ └── tests.txt ├── resources │ └── mmpose-logo.png ├── setup.cfg ├── setup.py ├── tests │ ├── data │ │ ├── 300w │ │ │ ├── indoor_020.png │ │ │ ├── indoor_029.png │ │ │ └── test_300w.json │ │ ├── 300wlp │ │ │ ├── AFW_134212_1_0.jpg │ │ │ ├── AFW_134212_2_0.jpg │ │ │ └── test_300wlp.json │ │ ├── aflw │ │ │ ├── image04476.jpg │ │ │ ├── image22568.jpg │ │ │ └── test_aflw.json │ │ ├── aic │ │ │ ├── 054d9ce9201beffc76e5ff2169d2af2f027002ca.jpg │ │ │ ├── fa436c914fe4a8ec1ec5474af4d3820b84d17561.jpg │ │ │ ├── ff945ae2e729f24eea992814639d59b3bdec8bd8.jpg │ │ │ └── test_aic.json │ │ ├── ak │ │ │ ├── AAOYRUDX │ │ │ │ ├── AAOYRUDX_f000027.jpg │ │ │ │ └── AAOYRUDX_f000028.jpg │ │ │ └── test_animalkingdom.json │ │ ├── animalpose │ │ │ ├── ca110.jpeg │ │ │ ├── ho105.jpeg │ │ │ └── test_animalpose.json │ │ ├── ap10k │ │ │ ├── 000000000004.jpg │ │ │ ├── 000000037516.jpg │ │ │ └── test_ap10k.json │ │ ├── atrw │ │ │ ├── 000061.jpg │ │ │ ├── 003464.jpg │ │ │ └── test_atrw.json │ │ ├── campus │ │ │ ├── actorsGT.mat │ │ │ ├── calibration_campus.json │ │ │ ├── panoptic_training_pose.pkl │ │ │ └── pred_campus_maskrcnn_hrnet_coco.pkl │ │ ├── coco │ │ │ ├── 000000000785.jpg │ │ │ ├── 000000040083.jpg │ │ │ ├── 000000196141.jpg │ │ │ ├── 000000197388.jpg │ │ │ ├── test_coco.json │ │ │ ├── test_coco_det_AP_H_56.json │ │ │ ├── test_coco_wholebody.json │ │ │ └── test_keypoint_partition_metric.json │ │ ├── cofw │ │ │ ├── 001766.jpg │ │ │ ├── 001805.jpg │ │ │ └── test_cofw.json │ │ ├── crowdpose │ │ │ ├── 103319.jpg │ │ │ ├── 106848.jpg │ │ │ ├── test_crowdpose.json │ │ │ └── test_crowdpose_det_AP_40.json │ │ ├── deepfasion2 │ │ │ ├── 000264.jpg │ │ │ ├── 000265.jpg │ │ │ └── deepfasion2.json │ │ ├── exlpose │ │ │ ├── imgs_0212_hwangridan_vid000020_exp1200_dark_000052__gain_3.40_exposure_417.png │ │ │ ├── imgs_0212_hwangridan_vid000020_exp400_dark_000052__gain_3.40_exposure_1250.png │ │ │ └── test_exlpose.json │ │ ├── fld │ │ │ ├── img_00000128.jpg │ │ │ ├── img_00000132.jpg │ │ │ └── test_fld.json │ │ ├── fly │ │ │ ├── 1400.jpg │ │ │ ├── 1450.jpg │ │ │ └── test_fly.json │ │ ├── freihand │ │ │ ├── 00000355.jpg │ │ │ ├── 00017620.jpg │ │ │ ├── 00032915.jpg │ │ │ ├── 00050180.jpg │ │ │ ├── 00065475.jpg │ │ │ ├── 00082740.jpg │ │ │ ├── 00098035.jpg │ │ │ ├── 00115300.jpg │ │ │ └── test_freihand.json │ │ ├── h36m │ │ │ ├── BF_IUV_gt │ │ │ │ ├── S1_Directions_1.54138969_000001_467_466.png │ │ │ │ ├── S5_SittingDown.54138969_002061_478_619.png │ │ │ │ ├── S7_Greeting.55011271_000396_365_433.png │ │ │ │ └── S8_WalkDog_1.55011271_000026_592_382.png │ │ │ ├── S1 │ │ │ │ └── S1_Directions_1.54138969 │ │ │ │ │ └── S1_Directions_1.54138969_000001.jpg │ │ │ ├── S5 │ │ │ │ └── S5_SittingDown.54138969 │ │ │ │ │ └── S5_SittingDown.54138969_002061.jpg │ │ │ ├── S7 │ │ │ │ └── S7_Greeting.55011271 │ │ │ │ │ └── S7_Greeting.55011271_000396.jpg │ │ │ ├── S8 │ │ │ │ └── S8_WalkDog_1.55011271 │ │ │ │ │ └── S8_WalkDog_1.55011271_000026.jpg │ │ │ ├── cameras.pkl │ │ │ ├── h36m_coco.json │ │ │ ├── test_h36m.npz │ │ │ ├── test_h36m_2d_detection.npy │ │ │ └── test_h36m_body3d.npz │ │ ├── h3wb │ │ │ └── h3wb_train_sub.npz │ │ ├── halpe │ │ │ └── test_halpe.json │ │ ├── horse10 │ │ │ ├── 0244.png │ │ │ ├── 0292.png │ │ │ ├── 0465.png │ │ │ └── test_horse10.json │ │ ├── humanart │ │ │ ├── 2D_virtual_human │ │ │ │ └── digital_art │ │ │ │ │ └── 000000001648.jpg │ │ │ ├── 3D_virtual_human │ │ │ │ └── garage_kits │ │ │ │ │ └── 000000005603.jpg │ │ │ ├── real_human │ │ │ │ └── acrobatics │ │ │ │ │ └── 000000000590.jpg │ │ │ ├── test_humanart.json │ │ │ └── test_humanart_det_AP_H_56.json │ │ ├── interhand2.6m │ │ │ ├── image2017.jpg │ │ │ ├── image29590.jpg │ │ │ ├── image44669.jpg │ │ │ ├── image69148.jpg │ │ │ ├── test_interhand2.6m_camera.json │ │ │ ├── test_interhand2.6m_data.json │ │ │ └── test_interhand2.6m_joint_3d.json │ │ ├── jhmdb │ │ │ ├── Frisbee_catch_f_cm_np1_ri_med_0 │ │ │ │ └── 00001.png │ │ │ ├── Frisbee_catch_f_cm_np1_ri_med_1 │ │ │ │ └── 00001.png │ │ │ ├── Goalkeeper_Training_Day_@_7_catch_f_cm_np1_ri_med_0 │ │ │ │ └── 00001.png │ │ │ └── test_jhmdb_sub1.json │ │ ├── lapa │ │ │ ├── 10773046825_0.jpg │ │ │ ├── 13609937564_5.jpg │ │ │ └── test_lapa.json │ │ ├── locust │ │ │ ├── 630.jpg │ │ │ ├── 650.jpg │ │ │ └── test_locust.json │ │ ├── macaque │ │ │ ├── PRI_1473.jpg │ │ │ ├── d47f1b1ee9d3217e.jpg │ │ │ └── test_macaque.json │ │ ├── mhp │ │ │ ├── 10084.jpg │ │ │ ├── 10112.jpg │ │ │ └── test_mhp.json │ │ ├── mosh │ │ │ └── test_mosh.npz │ │ ├── mpi_inf_3dhp │ │ │ ├── S4_Seq2_Cam0_001033.jpg │ │ │ ├── S8_Seq1_Cam8_002165.jpg │ │ │ ├── TS1_002001.jpg │ │ │ ├── TS2_001850.jpg │ │ │ ├── cameras_test.pkl │ │ │ ├── cameras_train.pkl │ │ │ ├── test_3dhp_test.npz │ │ │ └── test_3dhp_train.npz │ │ ├── mpii │ │ │ ├── 004645041.jpg │ │ │ ├── 005808361.jpg │ │ │ ├── 051423444.jpg │ │ │ ├── 052475643.jpg │ │ │ ├── 060754485.jpg │ │ │ ├── test_mpii.json │ │ │ └── test_mpii_trb.json │ │ ├── ochuman │ │ │ ├── 000817.jpg │ │ │ ├── 003799.jpg │ │ │ ├── 003896.jpg │ │ │ └── test_ochuman.json │ │ ├── onehand10k │ │ │ ├── 1402.jpg │ │ │ ├── 33.jpg │ │ │ ├── 784.jpg │ │ │ ├── 9.jpg │ │ │ └── test_onehand10k.json │ │ ├── panoptic │ │ │ ├── 005880453_01_l.jpg │ │ │ ├── 005880453_01_r.jpg │ │ │ ├── ex2_2.flv_000040_l.jpg │ │ │ ├── ex2_2.flv_000040_r.jpg │ │ │ └── test_panoptic.json │ │ ├── panoptic_body3d │ │ │ ├── 160906_band1 │ │ │ │ ├── calibration_160906_band1.json │ │ │ │ └── hdPose3d_stage1_coco19 │ │ │ │ │ ├── body3DScene_00000168.json │ │ │ │ │ └── body3DScene_00000169.json │ │ │ └── 160906_band2 │ │ │ │ ├── calibration_160906_band2.json │ │ │ │ └── hdPose3d_stage1_coco19 │ │ │ │ ├── body3DScene_00000139.json │ │ │ │ └── body3DScene_00000140.json │ │ ├── posetrack18 │ │ │ ├── annotations │ │ │ │ ├── test_posetrack18_human_detections.json │ │ │ │ ├── test_posetrack18_val.json │ │ │ │ └── val │ │ │ │ │ ├── 003418_mpii_test.json │ │ │ │ │ ├── 009473_mpii_test.json │ │ │ │ │ └── 012834_mpii_test.json │ │ │ ├── images │ │ │ │ └── val │ │ │ │ │ ├── 003418_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ │ │ ├── 009473_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ │ │ └── 012834_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ ├── mask │ │ │ │ └── val │ │ │ │ │ ├── 003418_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ │ │ ├── 009473_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ │ │ └── 012834_mpii_test │ │ │ │ │ └── 000000.jpg │ │ │ └── videos │ │ │ │ └── 000001_mpiinew_test │ │ │ │ ├── 000000.jpg │ │ │ │ ├── 000001.jpg │ │ │ │ ├── 000001_mpiinew_test.mp4 │ │ │ │ ├── 000002.jpg │ │ │ │ ├── 000003.jpg │ │ │ │ └── 000004.jpg │ │ ├── rhd │ │ │ ├── 00111.png │ │ │ ├── 01111.png │ │ │ ├── 11111.png │ │ │ └── test_rhd.json │ │ ├── shelf │ │ │ ├── actorsGT.mat │ │ │ ├── calibration_shelf.json │ │ │ ├── panoptic_training_pose.pkl │ │ │ └── pred_shelf_maskrcnn_hrnet_coco.pkl │ │ ├── smpl │ │ │ └── smpl_mean_params.npz │ │ ├── ubody3d │ │ │ └── ubody3d_train.json │ │ ├── wflw │ │ │ ├── 36_Football_americanfootball_ball_36_415.jpg │ │ │ ├── 7_Cheering_Cheering_7_16.jpg │ │ │ └── test_wflw.json │ │ └── zebra │ │ │ ├── 810.jpg │ │ │ ├── 850.jpg │ │ │ └── test_zebra.json │ ├── test_apis │ │ ├── test_inference.py │ │ └── test_inferencers │ │ │ ├── test_hand3d_inferencer.py │ │ │ ├── test_mmpose_inferencer.py │ │ │ ├── test_pose2d_inferencer.py │ │ │ └── test_pose3d_inferencer.py │ ├── test_codecs │ │ ├── test_annotation_processors.py │ │ ├── test_associative_embedding.py │ │ ├── test_decoupled_heatmap.py │ │ ├── test_edpose_label.py │ │ ├── test_hand_3d_heatmap.py │ │ ├── test_image_pose_lifting.py │ │ ├── test_integral_regression_label.py │ │ ├── test_megvii_heatmap.py │ │ ├── test_motionbert_label.py │ │ ├── test_msra_heatmap.py │ │ ├── test_regression_label.py │ │ ├── test_simcc_label.py │ │ ├── test_spr.py │ │ ├── test_udp_heatmap.py │ │ └── test_video_pose_lifting.py │ ├── test_datasets │ │ ├── test_datasets │ │ │ ├── test_animal_datasets │ │ │ │ ├── test_animalkingdom_dataset.py │ │ │ │ ├── test_animalpose_dataset.py │ │ │ │ ├── test_ap10k_dataset.py │ │ │ │ ├── test_atrw_dataset.py │ │ │ │ ├── test_fly_dataset.py │ │ │ │ ├── test_horse10_dataset.py │ │ │ │ ├── test_locust_dataset.py │ │ │ │ ├── test_macaque_dataset.py │ │ │ │ └── test_zebra_dataset.py │ │ │ ├── test_body_datasets │ │ │ │ ├── test_aic_dataset.py │ │ │ │ ├── test_coco_dataset.py │ │ │ │ ├── test_crowdpose_dataset.py │ │ │ │ ├── test_exlpose_dataset.py │ │ │ │ ├── test_h36m_dataset.py │ │ │ │ ├── test_humanart21_dataset.py │ │ │ │ ├── test_humanart_dataset.py │ │ │ │ ├── test_jhmdb_dataset.py │ │ │ │ ├── test_mhp_dataset.py │ │ │ │ ├── test_mpii_dataset.py │ │ │ │ ├── test_mpii_trb_dataset.py │ │ │ │ ├── test_ochuman_dataset.py │ │ │ │ ├── test_posetrack18_dataset.py │ │ │ │ └── test_posetrack18_video_dataset.py │ │ │ ├── test_dataset_wrappers │ │ │ │ └── test_combined_dataset.py │ │ │ ├── test_face_datasets │ │ │ │ ├── test_aflw_dataset.py │ │ │ │ ├── test_coco_wholebody_face_dataset.py │ │ │ │ ├── test_cofw_dataset.py │ │ │ │ ├── test_face_300w_dataset.py │ │ │ │ ├── test_face_300wlp_dataset.py │ │ │ │ ├── test_lapa_dataset.py │ │ │ │ └── test_wflw_dataset.py │ │ │ ├── test_fashion_datasets │ │ │ │ └── test_deepfashion_dataset.py │ │ │ ├── test_hand_datasets │ │ │ │ ├── test_coco_wholebody_hand_dataset.py │ │ │ │ ├── test_freihand_dataset.py │ │ │ │ ├── test_interhand2d_double_dataset.py │ │ │ │ ├── test_interhand3d_dataset.py │ │ │ │ ├── test_onehand10k_dataset.py │ │ │ │ ├── test_panoptic_hand2d_dataset.py │ │ │ │ └── test_rhd2d_dataset.py │ │ │ └── test_wholebody_datasets │ │ │ │ ├── test_coco_wholebody_dataset.py │ │ │ │ ├── test_h3wb_dataset.py │ │ │ │ ├── test_halpe_dataset.py │ │ │ │ └── test_ubody_dataset.py │ │ └── test_transforms │ │ │ ├── test_bottomup_transforms.py │ │ │ ├── test_common_transforms.py │ │ │ ├── test_converting.py │ │ │ ├── test_formatting.py │ │ │ ├── test_loading.py │ │ │ ├── test_mix_img_transform.py │ │ │ ├── test_pose3d_transforms.py │ │ │ └── test_topdown_transforms.py │ ├── test_engine │ │ ├── test_hooks │ │ │ ├── test_badcase_hook.py │ │ │ ├── test_mode_switch_hooks.py │ │ │ ├── test_sync_norm_hook.py │ │ │ └── test_visualization_hook.py │ │ └── test_schedulers │ │ │ ├── test_lr_scheduler.py │ │ │ └── test_quadratic_warmup.py │ ├── test_evaluation │ │ ├── test_evaluator │ │ │ └── test_multi_dataset_evaluator.py │ │ ├── test_functional │ │ │ ├── test_keypoint_eval.py │ │ │ ├── test_nms.py │ │ │ └── test_transforms.py │ │ └── test_metrics │ │ │ ├── test_coco_metric.py │ │ │ ├── test_coco_wholebody_metric.py │ │ │ ├── test_hand_metric.py │ │ │ ├── test_keypoint_2d_metrics.py │ │ │ ├── test_keypoint_3d_metrics.py │ │ │ ├── test_keypoint_partition_metric.py │ │ │ └── test_posetrack18_metric.py │ ├── test_external │ │ └── test_mim.py │ ├── test_models │ │ ├── test_backbones │ │ │ ├── test_alexnet.py │ │ │ ├── test_backbones_utils.py │ │ │ ├── test_cpm.py │ │ │ ├── test_csp_darknet.py │ │ │ ├── test_dstformer.py │ │ │ ├── test_hourglass.py │ │ │ ├── test_hrformer.py │ │ │ ├── test_hrnet.py │ │ │ ├── test_litehrnet.py │ │ │ ├── test_mobilenet_v2.py │ │ │ ├── test_mobilenet_v3.py │ │ │ ├── test_mspn.py │ │ │ ├── test_pvt.py │ │ │ ├── test_regnet.py │ │ │ ├── test_resnest.py │ │ │ ├── test_resnet.py │ │ │ ├── test_resnext.py │ │ │ ├── test_rsn.py │ │ │ ├── test_scnet.py │ │ │ ├── test_seresnet.py │ │ │ ├── test_seresnext.py │ │ │ ├── test_shufflenet_v1.py │ │ │ ├── test_shufflenet_v2.py │ │ │ ├── test_swin.py │ │ │ ├── test_tcn.py │ │ │ ├── test_v2v_net.py │ │ │ ├── test_vgg.py │ │ │ ├── test_vipnas_mbv3.py │ │ │ └── test_vipnas_resnet.py │ │ ├── test_data_preprocessors │ │ │ └── test_data_preprocessor.py │ │ ├── test_distillers │ │ │ └── test_dwpose_distiller.py │ │ ├── test_heads │ │ │ ├── test_heatmap_heads │ │ │ │ ├── test_ae_head.py │ │ │ │ ├── test_cid_head.py │ │ │ │ ├── test_cpm_head.py │ │ │ │ ├── test_heatmap_head.py │ │ │ │ ├── test_mspn_head.py │ │ │ │ ├── test_rtmcc_head.py │ │ │ │ ├── test_simcc_head.py │ │ │ │ └── test_vipnas_head.py │ │ │ ├── test_hybrid_heads │ │ │ │ ├── test_dekr_head.py │ │ │ │ └── test_vis_head.py │ │ │ └── test_regression_heads │ │ │ │ ├── test_dsnt_head.py │ │ │ │ ├── test_integral_regression_head.py │ │ │ │ ├── test_regression_head.py │ │ │ │ └── test_rle_head.py │ │ ├── test_losses │ │ │ ├── test_ae_loss.py │ │ │ ├── test_classification_losses.py │ │ │ ├── test_heatmap_losses.py │ │ │ └── test_regression_losses.py │ │ ├── test_necks │ │ │ ├── test_fmap_proc_neck.py │ │ │ └── test_yolox_pafpn.py │ │ ├── test_pose_estimators │ │ │ ├── test_bottomup.py │ │ │ └── test_topdown.py │ │ └── test_utils │ │ │ ├── test_check_and_update_config.py │ │ │ └── test_transformers.py │ ├── test_structures │ │ ├── test_bbox │ │ │ ├── test_bbox_overlaps.py │ │ │ └── test_bbox_transforms.py │ │ ├── test_keypoint │ │ │ └── test_keypoint_transforms.py │ │ ├── test_multilevel_pixel_data.py │ │ └── test_pose_data_sample.py │ ├── test_utils │ │ └── test_setup_env.py │ └── test_visualization │ │ ├── test_fast_visualizer.py │ │ └── test_pose_visualizer.py ├── tools │ ├── analysis_tools │ │ ├── analyze_logs.py │ │ ├── get_flops.py │ │ └── print_config.py │ ├── dataset_converters │ │ ├── 300wlp2coco.py │ │ ├── h36m_to_coco.py │ │ ├── labelstudio2coco.py │ │ ├── lapa2coco.py │ │ ├── mat2json.py │ │ ├── parse_animalpose_dataset.py │ │ ├── parse_cofw_dataset.py │ │ ├── parse_deepposekit_dataset.py │ │ ├── parse_macaquepose_dataset.py │ │ ├── preprocess_h36m.py │ │ ├── preprocess_mpi_inf_3dhp.py │ │ ├── scripts │ │ │ ├── preprocess_300w.sh │ │ │ ├── preprocess_aic.sh │ │ │ ├── preprocess_ap10k.sh │ │ │ ├── preprocess_coco2017.sh │ │ │ ├── preprocess_crowdpose.sh │ │ │ ├── preprocess_freihand.sh │ │ │ ├── preprocess_hagrid.sh │ │ │ ├── preprocess_halpe.sh │ │ │ ├── preprocess_lapa.sh │ │ │ ├── preprocess_mpii.sh │ │ │ ├── preprocess_onehand10k.sh │ │ │ └── preprocess_wflw.sh │ │ ├── ubody_kpts_to_coco.py │ │ └── ubody_smplx_to_coco.py │ ├── dist_test.sh │ ├── dist_train.sh │ ├── misc │ │ ├── browse_dataset.py │ │ ├── generate_bbox_file.py │ │ ├── keypoints2coco_without_mmdet.py │ │ ├── pth_transfer.py │ │ └── publish_model.py │ ├── slurm_test.sh │ ├── slurm_train.sh │ ├── test.py │ ├── torchserve │ │ ├── mmpose2torchserve.py │ │ ├── mmpose_handler.py │ │ └── test_torchserver.py │ └── train.py └── vis_results │ ├── 88.jpg │ ├── camera_0535.mp4 │ ├── camera_0907.mp4 │ └── test1.png ├── ranking.png ├── requirements.txt ├── result ├── detection │ └── .gitkeep ├── pose │ └── .gitkeep ├── reid │ └── .gitkeep ├── track │ └── .gitkeep └── track_log │ └── .gitkeep ├── script ├── fast_detection.sh ├── pose_estimation.sh ├── reid_infer.sh ├── reid_train.sh ├── run_track.sh └── standrad_detection.sh └── track ├── Solver ├── __pycache__ │ ├── bip_solver.cpython-310.pyc │ ├── bip_solver.cpython-312.pyc │ ├── bip_solver.cpython-37.pyc │ └── bip_solver.cpython-38.pyc ├── bip_solver.py └── km0.py ├── Tracker ├── PoseTracker.py ├── __pycache__ │ ├── PoseTracker.cpython-310.pyc │ ├── kalman_filter_box_zya.cpython-310.pyc │ ├── kalman_filter_keypoint_separate_onlyxy.cpython-310.pyc │ ├── kalman_filter_keypoint_separate_xyz.cpython-310.pyc │ └── matching.cpython-310.pyc ├── kalman_filter_box_zya.py └── matching.py ├── aic_cpp ├── aic_cpp.cpython-310-x86_64-linux-gnu.so ├── aic_cpp.cpython-38-x86_64-linux-gnu.so ├── aic_cpp.cpython-39-x86_64-linux-gnu.so ├── aic_cpp.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── aic_cpp_module.cpython-38-x86_64-linux-gnu.so ├── build │ ├── lib.linux-x86_64-3.10 │ │ └── aic_cpp.cpython-310-x86_64-linux-gnu.so │ ├── lib.linux-x86_64-3.8 │ │ └── aic_cpp.cpython-38-x86_64-linux-gnu.so │ ├── lib.linux-x86_64-cpython-38 │ │ ├── aic_cpp.cpython-38-x86_64-linux-gnu.so │ │ └── aic_cpp_module.cpython-38-x86_64-linux-gnu.so │ ├── lib.linux-x86_64-cpython-39 │ │ └── aic_cpp.cpython-39-x86_64-linux-gnu.so │ ├── temp.linux-x86_64-3.10 │ │ └── src │ │ │ └── aic.o │ ├── temp.linux-x86_64-3.8 │ │ └── src │ │ │ └── aic.o │ ├── temp.linux-x86_64-cpython-38 │ │ └── src │ │ │ └── aic.o │ └── temp.linux-x86_64-cpython-39 │ │ └── src │ │ └── aic.o ├── setup.py └── src │ └── aic.cpp ├── generate_submission.py ├── run_tracking_batch.py ├── tmp_out ├── scene_064kalman2.txt └── scene_064kalman2_base.txt └── util ├── __pycache__ ├── camera.cpython-310.pyc ├── camera.cpython-312.pyc ├── camera.cpython-37.pyc ├── camera.cpython-38.pyc ├── process.cpython-310.pyc ├── process.cpython-312.pyc └── process.cpython-38.pyc ├── camera.py └── process.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/architecture.png -------------------------------------------------------------------------------- /award.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/award.jpg -------------------------------------------------------------------------------- /ckpt_weight/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/train/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/val/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/LICENSE -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/README.md -------------------------------------------------------------------------------- /detection/get_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/get_detection.py -------------------------------------------------------------------------------- /detection/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/utils/timer.py -------------------------------------------------------------------------------- /detection/utils/trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/utils/trt.py -------------------------------------------------------------------------------- /detection/yolox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/__init__.py -------------------------------------------------------------------------------- /detection/yolox/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/core/__init__.py -------------------------------------------------------------------------------- /detection/yolox/core/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/core/launch.py -------------------------------------------------------------------------------- /detection/yolox/core/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/core/trainer.py -------------------------------------------------------------------------------- /detection/yolox/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/__init__.py -------------------------------------------------------------------------------- /detection/yolox/data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/data_augment.py -------------------------------------------------------------------------------- /detection/yolox/data/data_prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/data_prefetcher.py -------------------------------------------------------------------------------- /detection/yolox/data/dataloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/dataloading.py -------------------------------------------------------------------------------- /detection/yolox/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/datasets/__init__.py -------------------------------------------------------------------------------- /detection/yolox/data/datasets/mot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/datasets/mot.py -------------------------------------------------------------------------------- /detection/yolox/data/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/data/samplers.py -------------------------------------------------------------------------------- /detection/yolox/evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/evaluators/__init__.py -------------------------------------------------------------------------------- /detection/yolox/evaluators/coco_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/evaluators/coco_evaluator.py -------------------------------------------------------------------------------- /detection/yolox/evaluators/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/evaluators/evaluation.py -------------------------------------------------------------------------------- /detection/yolox/evaluators/mot_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/evaluators/mot_evaluator.py -------------------------------------------------------------------------------- /detection/yolox/exp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exp/__init__.py -------------------------------------------------------------------------------- /detection/yolox/exp/base_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exp/base_exp.py -------------------------------------------------------------------------------- /detection/yolox/exp/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exp/build.py -------------------------------------------------------------------------------- /detection/yolox/exp/yolox_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exp/yolox_base.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/nano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/nano.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolov3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolov3.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolox_l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolox_l.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolox_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolox_m.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolox_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolox_s.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolox_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolox_tiny.py -------------------------------------------------------------------------------- /detection/yolox/exps/default/yolox_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/default/yolox_x.py -------------------------------------------------------------------------------- /detection/yolox/exps/example/mot/yolox_x_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/exps/example/mot/yolox_x_ch.py -------------------------------------------------------------------------------- /detection/yolox/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/layers/__init__.py -------------------------------------------------------------------------------- /detection/yolox/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /detection/yolox/layers/fast_coco_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/layers/fast_coco_eval_api.py -------------------------------------------------------------------------------- /detection/yolox/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/__init__.py -------------------------------------------------------------------------------- /detection/yolox/models/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/darknet.py -------------------------------------------------------------------------------- /detection/yolox/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/losses.py -------------------------------------------------------------------------------- /detection/yolox/models/network_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/network_blocks.py -------------------------------------------------------------------------------- /detection/yolox/models/yolo_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/yolo_fpn.py -------------------------------------------------------------------------------- /detection/yolox/models/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/yolo_head.py -------------------------------------------------------------------------------- /detection/yolox/models/yolo_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/yolo_pafpn.py -------------------------------------------------------------------------------- /detection/yolox/models/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/models/yolox.py -------------------------------------------------------------------------------- /detection/yolox/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/train.py -------------------------------------------------------------------------------- /detection/yolox/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/__init__.py -------------------------------------------------------------------------------- /detection/yolox/utils/allreduce_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/allreduce_norm.py -------------------------------------------------------------------------------- /detection/yolox/utils/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/boxes.py -------------------------------------------------------------------------------- /detection/yolox/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/checkpoint.py -------------------------------------------------------------------------------- /detection/yolox/utils/demo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/demo_utils.py -------------------------------------------------------------------------------- /detection/yolox/utils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/dist.py -------------------------------------------------------------------------------- /detection/yolox/utils/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/ema.py -------------------------------------------------------------------------------- /detection/yolox/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/logger.py -------------------------------------------------------------------------------- /detection/yolox/utils/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/lr_scheduler.py -------------------------------------------------------------------------------- /detection/yolox/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/metric.py -------------------------------------------------------------------------------- /detection/yolox/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/model_utils.py -------------------------------------------------------------------------------- /detection/yolox/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/setup_env.py -------------------------------------------------------------------------------- /detection/yolox/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/detection/yolox/utils/visualize.py -------------------------------------------------------------------------------- /fast-reid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/CHANGELOG.md -------------------------------------------------------------------------------- /fast-reid/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/GETTING_STARTED.md -------------------------------------------------------------------------------- /fast-reid/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/INSTALL.md -------------------------------------------------------------------------------- /fast-reid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/LICENSE -------------------------------------------------------------------------------- /fast-reid/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/MODEL_ZOO.md -------------------------------------------------------------------------------- /fast-reid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/README.md -------------------------------------------------------------------------------- /fast-reid/configs/AIC24/mgn_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/AIC24/mgn_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/AIC24/mgn_R101.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/AIC24/mgn_R101.yml -------------------------------------------------------------------------------- /fast-reid/configs/AIC24/mgn_R101_reprod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/AIC24/mgn_R101_reprod.yml -------------------------------------------------------------------------------- /fast-reid/configs/Base-AGW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Base-AGW.yml -------------------------------------------------------------------------------- /fast-reid/configs/Base-MGN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Base-MGN.yml -------------------------------------------------------------------------------- /fast-reid/configs/Base-MGN_reprod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Base-MGN_reprod.yml -------------------------------------------------------------------------------- /fast-reid/configs/Base-SBS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Base-SBS.yml -------------------------------------------------------------------------------- /fast-reid/configs/Base-bagtricks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Base-bagtricks.yml -------------------------------------------------------------------------------- /fast-reid/configs/Challenge/mgn_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Challenge/mgn_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/Challenge/mgn_R101.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Challenge/mgn_R101.yml -------------------------------------------------------------------------------- /fast-reid/configs/Challenge/mgn_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Challenge/mgn_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Challenge/sbs_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Challenge/sbs_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/AGW_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/AGW_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/AGW_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/AGW_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/AGW_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/AGW_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/AGW_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/AGW_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/bagtricks_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/bagtricks_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/bagtricks_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/bagtricks_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/mgn_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/mgn_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/sbs_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/sbs_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/sbs_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/sbs_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/sbs_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/sbs_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/DukeMTMC/sbs_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/DukeMTMC/sbs_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/AGW_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/AGW_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/AGW_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/AGW_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/AGW_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/AGW_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/AGW_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/AGW_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/bagtricks_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/bagtricks_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/bagtricks_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/bagtricks_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/bagtricks_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/bagtricks_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/mgn_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/mgn_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/sbs_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/sbs_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/sbs_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/sbs_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/sbs_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/sbs_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/MSMT17/sbs_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/MSMT17/sbs_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/AGW_R101-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/AGW_R101-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/AGW_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/AGW_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/AGW_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/AGW_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/AGW_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/AGW_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/bagtricks_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/bagtricks_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/bagtricks_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/bagtricks_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/bagtricks_vit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/bagtricks_vit.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/mgn_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/mgn_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/sbs_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/sbs_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/sbs_R50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/sbs_R50.yml -------------------------------------------------------------------------------- /fast-reid/configs/Market1501/sbs_S50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/Market1501/sbs_S50.yml -------------------------------------------------------------------------------- /fast-reid/configs/VeRi/sbs_R50-ibn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/configs/VeRi/sbs_R50-ibn.yml -------------------------------------------------------------------------------- /fast-reid/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/demo/README.md -------------------------------------------------------------------------------- /fast-reid/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/demo/demo.py -------------------------------------------------------------------------------- /fast-reid/demo/plot_roc_with_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/demo/plot_roc_with_pickle.py -------------------------------------------------------------------------------- /fast-reid/demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/demo/predictor.py -------------------------------------------------------------------------------- /fast-reid/demo/visualize_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/demo/visualize_result.py -------------------------------------------------------------------------------- /fast-reid/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docker/Dockerfile -------------------------------------------------------------------------------- /fast-reid/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docker/README.md -------------------------------------------------------------------------------- /fast-reid/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build -------------------------------------------------------------------------------- /fast-reid/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/Makefile -------------------------------------------------------------------------------- /fast-reid/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/README.md -------------------------------------------------------------------------------- /fast-reid/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/_static/css/custom.css -------------------------------------------------------------------------------- /fast-reid/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/conf.py -------------------------------------------------------------------------------- /fast-reid/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/index.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/checkpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/checkpoint.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/config.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/data.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/data_transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/data_transforms.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/engine.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/evaluation.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/index.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/layers.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/modeling.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/solver.rst -------------------------------------------------------------------------------- /fast-reid/docs/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/modules/utils.rst -------------------------------------------------------------------------------- /fast-reid/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/docs/requirements.txt -------------------------------------------------------------------------------- /fast-reid/fastreid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/config/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/config/config.py -------------------------------------------------------------------------------- /fast-reid/fastreid/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/config/defaults.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/build.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/common.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/data_utils.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/aic24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/aic24.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/bases.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/caviara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/caviara.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/cuhk03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/cuhk03.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/grid.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/iLIDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/iLIDS.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/lpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/lpw.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/msmt17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/msmt17.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/pes3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/pes3d.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/pku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/pku.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/prai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/prai.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/prid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/prid.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/saivt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/saivt.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/sysu_mm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/sysu_mm.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/veri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/veri.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/veriwild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/veriwild.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/datasets/viper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/datasets/viper.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/samplers/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/data/transforms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/data/transforms/build.py -------------------------------------------------------------------------------- /fast-reid/fastreid/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/engine/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/engine/defaults.py -------------------------------------------------------------------------------- /fast-reid/fastreid/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/engine/hooks.py -------------------------------------------------------------------------------- /fast-reid/fastreid/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/engine/launch.py -------------------------------------------------------------------------------- /fast-reid/fastreid/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/engine/train_loop.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/evaluator.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/rank.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/rerank.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/roc.py -------------------------------------------------------------------------------- /fast-reid/fastreid/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/evaluation/testing.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/activation.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/any_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/any_softmax.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/batch_norm.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/context_block.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/drop.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/frn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/frn.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/gather_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/gather_layer.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/helpers.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/non_local.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/pooling.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/se_layer.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/splat.py -------------------------------------------------------------------------------- /fast-reid/fastreid/layers/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/layers/weight_init.py -------------------------------------------------------------------------------- /fast-reid/fastreid/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/modeling/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/modeling/heads/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/modeling/heads/build.py -------------------------------------------------------------------------------- /fast-reid/fastreid/modeling/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/modeling/losses/utils.py -------------------------------------------------------------------------------- /fast-reid/fastreid/modeling/meta_arch/mgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/modeling/meta_arch/mgn.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/build.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/lr_scheduler.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/optim/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/optim/lamb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/optim/lamb.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/optim/radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/optim/radam.py -------------------------------------------------------------------------------- /fast-reid/fastreid/solver/optim/swa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/solver/optim/swa.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/__init__.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/checkpoint.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/collect_env.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/comm.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/compute_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/compute_dist.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/env.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/events.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/faiss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/faiss_utils.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/file_io.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/history_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/history_buffer.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/logger.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/params.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/precision_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/precision_bn.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/registry.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/summary.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/timer.py -------------------------------------------------------------------------------- /fast-reid/fastreid/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/fastreid/utils/visualizer.py -------------------------------------------------------------------------------- /fast-reid/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fast-reid/projects/CrossDomainReID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/CrossDomainReID/README.md -------------------------------------------------------------------------------- /fast-reid/projects/DG-ReID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/DG-ReID/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastAttr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastAttr/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastAttr/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastAttr/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/FastClas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastClas/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastClas/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastClas/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/FastDistill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastDistill/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastDistill/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastDistill/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/FastFace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastFace/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastFace/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastFace/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/FastRT/.gitignore: -------------------------------------------------------------------------------- 1 | *.wts 2 | 3 | .vscode/ 4 | libs/ 5 | build/ 6 | data/ -------------------------------------------------------------------------------- /fast-reid/projects/FastRT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRT/CMakeLists.txt -------------------------------------------------------------------------------- /fast-reid/projects/FastRT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRT/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastRT/demo/inference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRT/demo/inference.cpp -------------------------------------------------------------------------------- /fast-reid/projects/FastRT/tools/gen_wts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRT/tools/gen_wts.py -------------------------------------------------------------------------------- /fast-reid/projects/FastRetri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRetri/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastRetri/configs/cub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRetri/configs/cub.yml -------------------------------------------------------------------------------- /fast-reid/projects/FastRetri/configs/sop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRetri/configs/sop.yml -------------------------------------------------------------------------------- /fast-reid/projects/FastRetri/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastRetri/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/FastTune/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastTune/README.md -------------------------------------------------------------------------------- /fast-reid/projects/FastTune/tune_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/FastTune/tune_net.py -------------------------------------------------------------------------------- /fast-reid/projects/HAA/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/HAA/Readme.md -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/README.md -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/configs/submit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/configs/submit.yml -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/label.txt -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/naic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/naic/__init__.py -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/naic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/naic/config.py -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/val_gallery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/val_gallery.txt -------------------------------------------------------------------------------- /fast-reid/projects/NAIC20/val_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/NAIC20/val_query.txt -------------------------------------------------------------------------------- /fast-reid/projects/PartialReID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/PartialReID/README.md -------------------------------------------------------------------------------- /fast-reid/projects/PartialReID/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/PartialReID/train_net.py -------------------------------------------------------------------------------- /fast-reid/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/projects/README.md -------------------------------------------------------------------------------- /fast-reid/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/__init__.py -------------------------------------------------------------------------------- /fast-reid/tests/dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/dataset_test.py -------------------------------------------------------------------------------- /fast-reid/tests/feature_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/feature_align.py -------------------------------------------------------------------------------- /fast-reid/tests/interp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/interp_test.py -------------------------------------------------------------------------------- /fast-reid/tests/lr_scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/lr_scheduler_test.py -------------------------------------------------------------------------------- /fast-reid/tests/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/model_test.py -------------------------------------------------------------------------------- /fast-reid/tests/sampler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/sampler_test.py -------------------------------------------------------------------------------- /fast-reid/tests/test_repvgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tests/test_repvgg.py -------------------------------------------------------------------------------- /fast-reid/tools/convert_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/convert_weight.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/ReadMe.md -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/caffe.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/caffe.proto -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/caffe_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/caffe_lmdb.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/caffe_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/caffe_net.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/caffe_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/caffe_pb2.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/layer_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/layer_param.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/Caffe/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/Caffe/net.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/README.md -------------------------------------------------------------------------------- /fast-reid/tools/deploy/caffe_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/caffe_export.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/caffe_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/caffe_inference.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/onnx_export.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/onnx_inference.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/pytorch_to_caffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/pytorch_to_caffe.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/trt_calibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/trt_calibrator.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/trt_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/trt_export.py -------------------------------------------------------------------------------- /fast-reid/tools/deploy/trt_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/deploy/trt_inference.py -------------------------------------------------------------------------------- /fast-reid/tools/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/infer.py -------------------------------------------------------------------------------- /fast-reid/tools/plain_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/plain_train_net.py -------------------------------------------------------------------------------- /fast-reid/tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/fast-reid/tools/train_net.py -------------------------------------------------------------------------------- /leadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/leadboard.jpg -------------------------------------------------------------------------------- /mmpose/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.circleci/config.yml -------------------------------------------------------------------------------- /mmpose/.circleci/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.circleci/docker/Dockerfile -------------------------------------------------------------------------------- /mmpose/.circleci/scripts/get_mmcv_var.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.circleci/scripts/get_mmcv_var.sh -------------------------------------------------------------------------------- /mmpose/.circleci/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.circleci/test.yml -------------------------------------------------------------------------------- /mmpose/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmpose/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /mmpose/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/pull_request_template.md -------------------------------------------------------------------------------- /mmpose/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /mmpose/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/workflows/lint.yml -------------------------------------------------------------------------------- /mmpose/.github/workflows/pr_stage_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.github/workflows/pr_stage_test.yml -------------------------------------------------------------------------------- /mmpose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.gitignore -------------------------------------------------------------------------------- /mmpose/.owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.owners.yml -------------------------------------------------------------------------------- /mmpose/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmpose/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.pylintrc -------------------------------------------------------------------------------- /mmpose/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/.readthedocs.yml -------------------------------------------------------------------------------- /mmpose/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/CITATION.cff -------------------------------------------------------------------------------- /mmpose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/LICENSE -------------------------------------------------------------------------------- /mmpose/LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/LICENSES.md -------------------------------------------------------------------------------- /mmpose/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/MANIFEST.in -------------------------------------------------------------------------------- /mmpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/README.md -------------------------------------------------------------------------------- /mmpose/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/README_CN.md -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/300w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/300w.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/300wlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/300wlp.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/aflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/aflw.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/aic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/aic.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/ak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/ak.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/animalpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/animalpose.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/ap10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/ap10k.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/atrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/atrw.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/campus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/campus.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/coco.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/coco_aic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/coco_aic.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/cofw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/cofw.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/crowdpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/crowdpose.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/exlpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/exlpose.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/fly.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/freihand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/freihand2d.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/h36m.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/h3wb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/h3wb.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/halpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/halpe.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/halpe26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/halpe26.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/horse10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/horse10.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/humanart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/humanart.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/humanart21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/humanart21.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/jhmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/jhmdb.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/lapa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/lapa.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/locust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/locust.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/macaque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/macaque.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/mhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/mhp.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/mpii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/mpii.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/mpii_trb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/mpii_trb.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/ochuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/ochuman.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/onehand10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/onehand10k.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/rhd2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/rhd2d.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/shelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/shelf.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/ubody2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/ubody2d.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/ubody3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/ubody3d.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/wflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/wflw.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/datasets/zebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/datasets/zebra.py -------------------------------------------------------------------------------- /mmpose/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /mmpose/configs/animal_2d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/animal_2d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/body_2d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/body_2d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/body_3d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/body_3d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/face_2d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/face_2d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/fashion_2d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/fashion_2d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/hand_2d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/hand_2d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/hand_3d_keypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/hand_3d_keypoint/README.md -------------------------------------------------------------------------------- /mmpose/configs/hand_gesture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/configs/hand_gesture/README.md -------------------------------------------------------------------------------- /mmpose/dataset-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/dataset-index.yml -------------------------------------------------------------------------------- /mmpose/demo/body3d_pose_lifter_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/body3d_pose_lifter_demo.py -------------------------------------------------------------------------------- /mmpose/demo/bottomup_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/bottomup_demo.py -------------------------------------------------------------------------------- /mmpose/demo/docs/en/2d_animal_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/2d_animal_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/2d_face_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/2d_face_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/2d_hand_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/2d_hand_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/2d_human_pose_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/2d_human_pose_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/3d_hand_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/3d_hand_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/3d_human_pose_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/3d_human_pose_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/mmdet_modelzoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/mmdet_modelzoo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/en/webcam_api_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/en/webcam_api_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/2d_animal_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/2d_animal_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/2d_face_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/2d_face_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/2d_hand_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/2d_hand_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/2d_human_pose_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/2d_human_pose_demo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/3d_human_pose_demo.md: -------------------------------------------------------------------------------- 1 | coming soon 2 | -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/mmdet_modelzoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/mmdet_modelzoo.md -------------------------------------------------------------------------------- /mmpose/demo/docs/zh_cn/webcam_api_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/docs/zh_cn/webcam_api_demo.md -------------------------------------------------------------------------------- /mmpose/demo/hand3d_internet_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/hand3d_internet_demo.py -------------------------------------------------------------------------------- /mmpose/demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/image_demo.py -------------------------------------------------------------------------------- /mmpose/demo/inferencer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/inferencer_demo.py -------------------------------------------------------------------------------- /mmpose/demo/resources/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/resources/demo.mp4 -------------------------------------------------------------------------------- /mmpose/demo/resources/demo_coco.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/resources/demo_coco.gif -------------------------------------------------------------------------------- /mmpose/demo/resources/sunglasses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/resources/sunglasses.jpg -------------------------------------------------------------------------------- /mmpose/demo/save_pose_with_det_multiscene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/save_pose_with_det_multiscene.py -------------------------------------------------------------------------------- /mmpose/demo/topdown_demo_with_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/demo/topdown_demo_with_mmdet.py -------------------------------------------------------------------------------- /mmpose/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docker/Dockerfile -------------------------------------------------------------------------------- /mmpose/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmpose/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docker/serve/config.properties -------------------------------------------------------------------------------- /mmpose/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmpose/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/Makefile -------------------------------------------------------------------------------- /mmpose/docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /mmpose/docs/en/advanced_guides/codecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/advanced_guides/codecs.md -------------------------------------------------------------------------------- /mmpose/docs/en/advanced_guides/customize_logging.md: -------------------------------------------------------------------------------- 1 | # Customize Logging 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/en/advanced_guides/dataflow.md: -------------------------------------------------------------------------------- 1 | # Dataflow in MMPose 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/api.rst -------------------------------------------------------------------------------- /mmpose/docs/en/collect_modelzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/collect_modelzoo.py -------------------------------------------------------------------------------- /mmpose/docs/en/collect_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/collect_projects.py -------------------------------------------------------------------------------- /mmpose/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/conf.py -------------------------------------------------------------------------------- /mmpose/docs/en/contribution_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/contribution_guide.md -------------------------------------------------------------------------------- /mmpose/docs/en/dataset_zoo/3d_body_mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/dataset_zoo/3d_body_mesh.md -------------------------------------------------------------------------------- /mmpose/docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/faq.md -------------------------------------------------------------------------------- /mmpose/docs/en/guide_to_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/guide_to_framework.md -------------------------------------------------------------------------------- /mmpose/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/index.rst -------------------------------------------------------------------------------- /mmpose/docs/en/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/installation.md -------------------------------------------------------------------------------- /mmpose/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/make.bat -------------------------------------------------------------------------------- /mmpose/docs/en/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/merge_docs.sh -------------------------------------------------------------------------------- /mmpose/docs/en/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/migration.md -------------------------------------------------------------------------------- /mmpose/docs/en/notes/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/notes/benchmark.md -------------------------------------------------------------------------------- /mmpose/docs/en/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/notes/changelog.md -------------------------------------------------------------------------------- /mmpose/docs/en/notes/ecosystem.md: -------------------------------------------------------------------------------- 1 | # Ecosystem 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/en/notes/pytorch_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/notes/pytorch_2.md -------------------------------------------------------------------------------- /mmpose/docs/en/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/overview.md -------------------------------------------------------------------------------- /mmpose/docs/en/projects/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/projects/projects.md -------------------------------------------------------------------------------- /mmpose/docs/en/quick_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/quick_run.md -------------------------------------------------------------------------------- /mmpose/docs/en/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/stats.py -------------------------------------------------------------------------------- /mmpose/docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/switch_language.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/configs.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/dataset_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/dataset_tools.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/how_to_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/how_to_deploy.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/inference.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/label_studio.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/mixed_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/mixed_datasets.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/model_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/model_analysis.md -------------------------------------------------------------------------------- /mmpose/docs/en/user_guides/train_and_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/user_guides/train_and_test.md -------------------------------------------------------------------------------- /mmpose/docs/en/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/en/visualization.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/cid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/cid.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/cpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/cpm.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/dark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/dark.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/dekr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/dekr.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/dsnt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/dsnt.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/dwpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/dwpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/edpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/edpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/hmr.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/hrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/hrnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/hrnetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/hrnetv2.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/ipr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/ipr.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/mspn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/mspn.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/rle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/rle.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/rsn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/rsn.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/rtmo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/rtmo.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/rtmpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/rtmpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/scnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/scnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/simcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/simcc.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/udp.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/vipnas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/vipnas.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/algorithms/vitpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/algorithms/vitpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/alexnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/alexnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/cpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/cpm.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/hrformer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/hrformer.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/hrnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/hrnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/hrnetv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/hrnetv2.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/mspn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/mspn.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/pvt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/pvt.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/pvtv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/pvtv2.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/resnest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/resnest.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/resnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/resnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/resnext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/resnext.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/rsn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/rsn.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/scnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/scnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/seresnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/seresnet.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/swin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/swin.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/vgg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/vgg.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/backbones/vipnas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/backbones/vipnas.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/300w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/300w.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/300wlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/300wlp.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/aflw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/aflw.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/aic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/aic.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/ap10k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/ap10k.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/atrw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/atrw.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/coco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/coco.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/cofw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/cofw.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/crowdpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/crowdpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/exlpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/exlpose.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/fly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/fly.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/freihand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/freihand.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/h36m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/h36m.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/halpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/halpe.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/horse10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/horse10.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/human_art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/human_art.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/interhand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/interhand.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/jhmdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/jhmdb.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/lapa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/lapa.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/locust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/locust.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/macaque.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/macaque.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/mhp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/mhp.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/mpii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/mpii.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/mpii_trb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/mpii_trb.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/ochuman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/ochuman.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/panoptic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/panoptic.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/rhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/rhd.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/ubody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/ubody.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/wflw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/wflw.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/datasets/zebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/datasets/zebra.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/techniques/dark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/techniques/dark.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/techniques/fp16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/techniques/fp16.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/techniques/fpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/techniques/fpn.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/techniques/rle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/techniques/rle.md -------------------------------------------------------------------------------- /mmpose/docs/src/papers/techniques/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/src/papers/techniques/udp.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/advanced_guides/codecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/advanced_guides/codecs.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/advanced_guides/customize_logging.md: -------------------------------------------------------------------------------- 1 | # Customize Logging 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/advanced_guides/dataflow.md: -------------------------------------------------------------------------------- 1 | # Dataflow in MMPose 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/collect_modelzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/collect_modelzoo.py -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/collect_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/collect_projects.py -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/contribution_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/contribution_guide.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/faq.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/guide_to_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/guide_to_framework.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/installation.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/merge_docs.sh -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/migration.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/notes/changelog.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/notes/ecosystem.md: -------------------------------------------------------------------------------- 1 | # Ecosystem 2 | 3 | Coming soon. 4 | -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/notes/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/notes/projects.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/notes/pytorch_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/notes/pytorch_2.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/overview.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/quick_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/quick_run.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/stats.py -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/user_guides/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/user_guides/configs.md -------------------------------------------------------------------------------- /mmpose/docs/zh_cn/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/docs/zh_cn/user_guides/inference.md -------------------------------------------------------------------------------- /mmpose/examples/88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/examples/88.jpg -------------------------------------------------------------------------------- /mmpose/mmpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/inference.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/inference_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/inference_3d.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/inference_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/inference_tracking.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/inferencers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/inferencers/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/apis/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/apis/visualization.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/base.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/decoupled_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/decoupled_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/edpose_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/edpose_label.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/hand_3d_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/hand_3d_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/image_pose_lifting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/image_pose_lifting.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/megvii_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/megvii_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/motionbert_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/motionbert_label.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/msra_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/msra_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/regression_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/regression_label.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/simcc_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/simcc_label.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/spr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/spr.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/udp_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/udp_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/utils/offset_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/utils/offset_heatmap.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/utils/refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/utils/refinement.py -------------------------------------------------------------------------------- /mmpose/mmpose/codecs/video_pose_lifting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/codecs/video_pose_lifting.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/builder.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/datasets/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/datasets/utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/samplers.py -------------------------------------------------------------------------------- /mmpose/mmpose/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/datasets/transforms/loading.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/hooks/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/hooks/badcase_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/hooks/badcase_hook.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/hooks/ema_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/hooks/ema_hook.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/hooks/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/hooks/sync_norm_hook.py -------------------------------------------------------------------------------- /mmpose/mmpose/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/evaluation/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/evaluation/functional/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/evaluation/functional/nms.py -------------------------------------------------------------------------------- /mmpose/mmpose/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/alexnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/cpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/cpm.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/cspnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/cspnext.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/dstformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/dstformer.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/hrformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/hrformer.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/litehrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/litehrnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/mspn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/mspn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/pvt.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/rsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/rsn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/scnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/seresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/seresnet.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/seresnext.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/swin.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/tcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/tcn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/v2v_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/v2v_net.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/backbones/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/backbones/vgg.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/builder.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/distillers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/distillers/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/heads/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/heads/base_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/heads/base_head.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/bbox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/bbox_loss.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/fea_dis_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/fea_dis_loss.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/heatmap_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/heatmap_loss.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/losses/loss_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/losses/loss_wrappers.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/cspnext_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/cspnext_pafpn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/fmap_proc_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/fmap_proc_neck.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/fpn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/gap_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/gap_neck.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/hybrid_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/hybrid_encoder.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/pose_estimators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/pose_estimators/base.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/ckpt_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/ckpt_convert.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/csp_layer.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/geometry.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/misc.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/ops.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/realnvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/realnvp.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/reparam_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/reparam_layers.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/rtmcc_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/rtmcc_block.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/transformer.py -------------------------------------------------------------------------------- /mmpose/mmpose/models/utils/tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/models/utils/tta.py -------------------------------------------------------------------------------- /mmpose/mmpose/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/registry.py -------------------------------------------------------------------------------- /mmpose/mmpose/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/structures/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/structures/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/structures/bbox/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/structures/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/structures/bbox/transforms.py -------------------------------------------------------------------------------- /mmpose/mmpose/structures/pose_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/structures/pose_data_sample.py -------------------------------------------------------------------------------- /mmpose/mmpose/structures/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/structures/utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/testing/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/testing/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/testing/_utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/camera.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/collect_env.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/config_utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/dist_utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/hooks.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/logger.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/setup_env.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/tensor_utils.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/timer.py -------------------------------------------------------------------------------- /mmpose/mmpose/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/utils/typing.py -------------------------------------------------------------------------------- /mmpose/mmpose/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/version.py -------------------------------------------------------------------------------- /mmpose/mmpose/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/visualization/__init__.py -------------------------------------------------------------------------------- /mmpose/mmpose/visualization/simcc_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/mmpose/visualization/simcc_vis.py -------------------------------------------------------------------------------- /mmpose/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/model-index.yml -------------------------------------------------------------------------------- /mmpose/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/README.md -------------------------------------------------------------------------------- /mmpose/projects/awesome-mmpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/awesome-mmpose/README.md -------------------------------------------------------------------------------- /mmpose/projects/example_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/example_project/README.md -------------------------------------------------------------------------------- /mmpose/projects/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/faq.md -------------------------------------------------------------------------------- /mmpose/projects/just_dance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/just_dance/README.md -------------------------------------------------------------------------------- /mmpose/projects/just_dance/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/just_dance/app.py -------------------------------------------------------------------------------- /mmpose/projects/just_dance/process_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/just_dance/process_video.py -------------------------------------------------------------------------------- /mmpose/projects/just_dance/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/just_dance/utils.py -------------------------------------------------------------------------------- /mmpose/projects/mmpose4aigc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/mmpose4aigc/README.md -------------------------------------------------------------------------------- /mmpose/projects/mmpose4aigc/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/mmpose4aigc/README_CN.md -------------------------------------------------------------------------------- /mmpose/projects/pose_anything/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/pose_anything/README.md -------------------------------------------------------------------------------- /mmpose/projects/pose_anything/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | from .pipelines import * # noqa 2 | -------------------------------------------------------------------------------- /mmpose/projects/pose_anything/datasets/pipelines/post_transforms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmpose/projects/pose_anything/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/pose_anything/demo.py -------------------------------------------------------------------------------- /mmpose/projects/rtmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmo/README.md -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/README.md -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/README_CN.md -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/app.py -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/benchmark/README.md -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/examples/README.md -------------------------------------------------------------------------------- /mmpose/projects/rtmpose/rtmdet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/rtmpose/rtmdet/README.md -------------------------------------------------------------------------------- /mmpose/projects/skps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/skps/README.md -------------------------------------------------------------------------------- /mmpose/projects/skps/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/skps/models/__init__.py -------------------------------------------------------------------------------- /mmpose/projects/skps/models/skps_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/skps/models/skps_head.py -------------------------------------------------------------------------------- /mmpose/projects/uniformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/uniformer/README.md -------------------------------------------------------------------------------- /mmpose/projects/uniformer/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .uniformer import * # noqa 2 | -------------------------------------------------------------------------------- /mmpose/projects/yolox_pose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/yolox_pose/README.md -------------------------------------------------------------------------------- /mmpose/projects/yolox_pose/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/projects/yolox_pose/models/utils.py -------------------------------------------------------------------------------- /mmpose/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/pytest.ini -------------------------------------------------------------------------------- /mmpose/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements.txt -------------------------------------------------------------------------------- /mmpose/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/albu.txt -------------------------------------------------------------------------------- /mmpose/requirements/build.txt: -------------------------------------------------------------------------------- 1 | # These must be installed before building mmpose 2 | numpy 3 | torch>=1.8 4 | -------------------------------------------------------------------------------- /mmpose/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/docs.txt -------------------------------------------------------------------------------- /mmpose/requirements/mminstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/mminstall.txt -------------------------------------------------------------------------------- /mmpose/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /mmpose/requirements/poseval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/poseval.txt -------------------------------------------------------------------------------- /mmpose/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmpose/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/runtime.txt -------------------------------------------------------------------------------- /mmpose/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/requirements/tests.txt -------------------------------------------------------------------------------- /mmpose/resources/mmpose-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/resources/mmpose-logo.png -------------------------------------------------------------------------------- /mmpose/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/setup.cfg -------------------------------------------------------------------------------- /mmpose/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/setup.py -------------------------------------------------------------------------------- /mmpose/tests/data/300w/indoor_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300w/indoor_020.png -------------------------------------------------------------------------------- /mmpose/tests/data/300w/indoor_029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300w/indoor_029.png -------------------------------------------------------------------------------- /mmpose/tests/data/300w/test_300w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300w/test_300w.json -------------------------------------------------------------------------------- /mmpose/tests/data/300wlp/AFW_134212_1_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300wlp/AFW_134212_1_0.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/300wlp/AFW_134212_2_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300wlp/AFW_134212_2_0.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/300wlp/test_300wlp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/300wlp/test_300wlp.json -------------------------------------------------------------------------------- /mmpose/tests/data/aflw/image04476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/aflw/image04476.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/aflw/image22568.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/aflw/image22568.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/aflw/test_aflw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/aflw/test_aflw.json -------------------------------------------------------------------------------- /mmpose/tests/data/aic/test_aic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/aic/test_aic.json -------------------------------------------------------------------------------- /mmpose/tests/data/ak/test_animalkingdom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ak/test_animalkingdom.json -------------------------------------------------------------------------------- /mmpose/tests/data/animalpose/ca110.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/animalpose/ca110.jpeg -------------------------------------------------------------------------------- /mmpose/tests/data/animalpose/ho105.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/animalpose/ho105.jpeg -------------------------------------------------------------------------------- /mmpose/tests/data/ap10k/000000000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ap10k/000000000004.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/ap10k/000000037516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ap10k/000000037516.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/ap10k/test_ap10k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ap10k/test_ap10k.json -------------------------------------------------------------------------------- /mmpose/tests/data/atrw/000061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/atrw/000061.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/atrw/003464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/atrw/003464.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/atrw/test_atrw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/atrw/test_atrw.json -------------------------------------------------------------------------------- /mmpose/tests/data/campus/actorsGT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/campus/actorsGT.mat -------------------------------------------------------------------------------- /mmpose/tests/data/coco/000000000785.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/coco/000000000785.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/coco/000000040083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/coco/000000040083.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/coco/000000196141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/coco/000000196141.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/coco/000000197388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/coco/000000197388.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/coco/test_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/coco/test_coco.json -------------------------------------------------------------------------------- /mmpose/tests/data/cofw/001766.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/cofw/001766.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/cofw/001805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/cofw/001805.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/cofw/test_cofw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/cofw/test_cofw.json -------------------------------------------------------------------------------- /mmpose/tests/data/crowdpose/103319.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/crowdpose/103319.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/crowdpose/106848.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/crowdpose/106848.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/deepfasion2/000264.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/deepfasion2/000264.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/deepfasion2/000265.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/deepfasion2/000265.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/exlpose/test_exlpose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/exlpose/test_exlpose.json -------------------------------------------------------------------------------- /mmpose/tests/data/fld/img_00000128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fld/img_00000128.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/fld/img_00000132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fld/img_00000132.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/fld/test_fld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fld/test_fld.json -------------------------------------------------------------------------------- /mmpose/tests/data/fly/1400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fly/1400.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/fly/1450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fly/1450.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/fly/test_fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/fly/test_fly.json -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00000355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00000355.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00017620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00017620.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00032915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00032915.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00050180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00050180.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00065475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00065475.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00082740.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00082740.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00098035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00098035.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/freihand/00115300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/freihand/00115300.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/h36m/cameras.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/h36m/cameras.pkl -------------------------------------------------------------------------------- /mmpose/tests/data/h36m/h36m_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/h36m/h36m_coco.json -------------------------------------------------------------------------------- /mmpose/tests/data/h36m/test_h36m.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/h36m/test_h36m.npz -------------------------------------------------------------------------------- /mmpose/tests/data/h36m/test_h36m_body3d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/h36m/test_h36m_body3d.npz -------------------------------------------------------------------------------- /mmpose/tests/data/h3wb/h3wb_train_sub.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/h3wb/h3wb_train_sub.npz -------------------------------------------------------------------------------- /mmpose/tests/data/halpe/test_halpe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/halpe/test_halpe.json -------------------------------------------------------------------------------- /mmpose/tests/data/horse10/0244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/horse10/0244.png -------------------------------------------------------------------------------- /mmpose/tests/data/horse10/0292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/horse10/0292.png -------------------------------------------------------------------------------- /mmpose/tests/data/horse10/0465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/horse10/0465.png -------------------------------------------------------------------------------- /mmpose/tests/data/horse10/test_horse10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/horse10/test_horse10.json -------------------------------------------------------------------------------- /mmpose/tests/data/jhmdb/test_jhmdb_sub1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/jhmdb/test_jhmdb_sub1.json -------------------------------------------------------------------------------- /mmpose/tests/data/lapa/10773046825_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/lapa/10773046825_0.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/lapa/13609937564_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/lapa/13609937564_5.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/lapa/test_lapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/lapa/test_lapa.json -------------------------------------------------------------------------------- /mmpose/tests/data/locust/630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/locust/630.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/locust/650.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/locust/650.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/locust/test_locust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/locust/test_locust.json -------------------------------------------------------------------------------- /mmpose/tests/data/macaque/PRI_1473.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/macaque/PRI_1473.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/macaque/test_macaque.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/macaque/test_macaque.json -------------------------------------------------------------------------------- /mmpose/tests/data/mhp/10084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mhp/10084.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mhp/10112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mhp/10112.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mhp/test_mhp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mhp/test_mhp.json -------------------------------------------------------------------------------- /mmpose/tests/data/mosh/test_mosh.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mosh/test_mosh.npz -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/004645041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/004645041.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/005808361.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/005808361.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/051423444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/051423444.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/052475643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/052475643.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/060754485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/060754485.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/test_mpii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/test_mpii.json -------------------------------------------------------------------------------- /mmpose/tests/data/mpii/test_mpii_trb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/mpii/test_mpii_trb.json -------------------------------------------------------------------------------- /mmpose/tests/data/ochuman/000817.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ochuman/000817.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/ochuman/003799.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ochuman/003799.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/ochuman/003896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ochuman/003896.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/ochuman/test_ochuman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ochuman/test_ochuman.json -------------------------------------------------------------------------------- /mmpose/tests/data/onehand10k/1402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/onehand10k/1402.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/onehand10k/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/onehand10k/33.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/onehand10k/784.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/onehand10k/784.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/onehand10k/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/onehand10k/9.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/rhd/00111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/rhd/00111.png -------------------------------------------------------------------------------- /mmpose/tests/data/rhd/01111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/rhd/01111.png -------------------------------------------------------------------------------- /mmpose/tests/data/rhd/11111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/rhd/11111.png -------------------------------------------------------------------------------- /mmpose/tests/data/rhd/test_rhd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/rhd/test_rhd.json -------------------------------------------------------------------------------- /mmpose/tests/data/shelf/actorsGT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/shelf/actorsGT.mat -------------------------------------------------------------------------------- /mmpose/tests/data/smpl/smpl_mean_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/smpl/smpl_mean_params.npz -------------------------------------------------------------------------------- /mmpose/tests/data/ubody3d/ubody3d_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/ubody3d/ubody3d_train.json -------------------------------------------------------------------------------- /mmpose/tests/data/wflw/test_wflw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/wflw/test_wflw.json -------------------------------------------------------------------------------- /mmpose/tests/data/zebra/810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/zebra/810.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/zebra/850.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/zebra/850.jpg -------------------------------------------------------------------------------- /mmpose/tests/data/zebra/test_zebra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/data/zebra/test_zebra.json -------------------------------------------------------------------------------- /mmpose/tests/test_apis/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_apis/test_inference.py -------------------------------------------------------------------------------- /mmpose/tests/test_codecs/test_simcc_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_codecs/test_simcc_label.py -------------------------------------------------------------------------------- /mmpose/tests/test_codecs/test_spr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_codecs/test_spr.py -------------------------------------------------------------------------------- /mmpose/tests/test_codecs/test_udp_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_codecs/test_udp_heatmap.py -------------------------------------------------------------------------------- /mmpose/tests/test_external/test_mim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_external/test_mim.py -------------------------------------------------------------------------------- /mmpose/tests/test_utils/test_setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tests/test_utils/test_setup_env.py -------------------------------------------------------------------------------- /mmpose/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /mmpose/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /mmpose/tools/analysis_tools/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/analysis_tools/print_config.py -------------------------------------------------------------------------------- /mmpose/tools/dataset_converters/lapa2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/dataset_converters/lapa2coco.py -------------------------------------------------------------------------------- /mmpose/tools/dataset_converters/mat2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/dataset_converters/mat2json.py -------------------------------------------------------------------------------- /mmpose/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/dist_test.sh -------------------------------------------------------------------------------- /mmpose/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/dist_train.sh -------------------------------------------------------------------------------- /mmpose/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /mmpose/tools/misc/generate_bbox_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/misc/generate_bbox_file.py -------------------------------------------------------------------------------- /mmpose/tools/misc/pth_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/misc/pth_transfer.py -------------------------------------------------------------------------------- /mmpose/tools/misc/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/misc/publish_model.py -------------------------------------------------------------------------------- /mmpose/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmpose/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmpose/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/test.py -------------------------------------------------------------------------------- /mmpose/tools/torchserve/mmpose2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/torchserve/mmpose2torchserve.py -------------------------------------------------------------------------------- /mmpose/tools/torchserve/mmpose_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/torchserve/mmpose_handler.py -------------------------------------------------------------------------------- /mmpose/tools/torchserve/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/torchserve/test_torchserver.py -------------------------------------------------------------------------------- /mmpose/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/tools/train.py -------------------------------------------------------------------------------- /mmpose/vis_results/88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/vis_results/88.jpg -------------------------------------------------------------------------------- /mmpose/vis_results/camera_0535.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/vis_results/camera_0535.mp4 -------------------------------------------------------------------------------- /mmpose/vis_results/camera_0907.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/vis_results/camera_0907.mp4 -------------------------------------------------------------------------------- /mmpose/vis_results/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/mmpose/vis_results/test1.png -------------------------------------------------------------------------------- /ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/ranking.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/requirements.txt -------------------------------------------------------------------------------- /result/detection/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/pose/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/reid/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/track/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /result/track_log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/fast_detection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/fast_detection.sh -------------------------------------------------------------------------------- /script/pose_estimation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/pose_estimation.sh -------------------------------------------------------------------------------- /script/reid_infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/reid_infer.sh -------------------------------------------------------------------------------- /script/reid_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/reid_train.sh -------------------------------------------------------------------------------- /script/run_track.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/run_track.sh -------------------------------------------------------------------------------- /script/standrad_detection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/script/standrad_detection.sh -------------------------------------------------------------------------------- /track/Solver/bip_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/Solver/bip_solver.py -------------------------------------------------------------------------------- /track/Solver/km0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/Solver/km0.py -------------------------------------------------------------------------------- /track/Tracker/PoseTracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/Tracker/PoseTracker.py -------------------------------------------------------------------------------- /track/Tracker/kalman_filter_box_zya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/Tracker/kalman_filter_box_zya.py -------------------------------------------------------------------------------- /track/Tracker/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/Tracker/matching.py -------------------------------------------------------------------------------- /track/aic_cpp/aic_cpp.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/aic_cpp/aic_cpp.egg-info/PKG-INFO -------------------------------------------------------------------------------- /track/aic_cpp/aic_cpp.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/aic_cpp/aic_cpp.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /track/aic_cpp/aic_cpp.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /track/aic_cpp/aic_cpp.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | aic_cpp 2 | -------------------------------------------------------------------------------- /track/aic_cpp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/aic_cpp/setup.py -------------------------------------------------------------------------------- /track/aic_cpp/src/aic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/aic_cpp/src/aic.cpp -------------------------------------------------------------------------------- /track/generate_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/generate_submission.py -------------------------------------------------------------------------------- /track/run_tracking_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/run_tracking_batch.py -------------------------------------------------------------------------------- /track/tmp_out/scene_064kalman2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/tmp_out/scene_064kalman2.txt -------------------------------------------------------------------------------- /track/tmp_out/scene_064kalman2_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/tmp_out/scene_064kalman2_base.txt -------------------------------------------------------------------------------- /track/util/__pycache__/camera.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/util/__pycache__/camera.cpython-37.pyc -------------------------------------------------------------------------------- /track/util/__pycache__/camera.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/util/__pycache__/camera.cpython-38.pyc -------------------------------------------------------------------------------- /track/util/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/util/camera.py -------------------------------------------------------------------------------- /track/util/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhenyuX1E/PoseTrack/HEAD/track/util/process.py --------------------------------------------------------------------------------