├── .gitignore ├── .idea ├── .gitignore ├── ReID-UDA-baseline.iml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── VISDA20.md ├── configs ├── joint.yml ├── public.yml └── visda20.yml ├── lib ├── __init__.py ├── cluster.py ├── config.py ├── dataset │ ├── __init__.py │ ├── base.py │ ├── build_dataset.py │ ├── data_loader.py │ ├── dukemtmc.py │ ├── lpw.py │ ├── market1501.py │ ├── msmt17.py │ ├── personx.py │ ├── poly.py │ ├── rydata.py │ ├── rytest.py │ ├── synthetic.py │ ├── transforms │ │ ├── __init__.py │ │ ├── augmix.py │ │ ├── autoaug.py │ │ └── transform.py │ ├── visda20.py │ └── visda20_pseudo.py ├── evaluation.py ├── losses │ ├── __init__.py │ ├── build_loss.py │ ├── id_loss.py │ └── metric_loss.py ├── memory_bank.py ├── modeling │ ├── __init__.py │ ├── build_model.py │ ├── densenet_ibn_a.py │ ├── regnet.py │ ├── resnest.py │ ├── resnet.py │ ├── resnet_ibn_a.py │ ├── resnet_ibn_b.py │ └── resnext_ibn_a.py ├── post_processing.py ├── sampler.py ├── train_net.py └── utils.py ├── scripts ├── joint.sh ├── pseudo_label.sh ├── public.sh ├── search.sh ├── submit.sh ├── test.sh ├── train.sh ├── train_cam.sh └── train_uda.sh ├── tech_report.pdf └── tools ├── compute_distmat.py ├── model_ensemble.py ├── pseudo_label.py ├── test.py ├── train.py ├── train_cam.py └── train_uda.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/ReID-UDA-baseline.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/ReID-UDA-baseline.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/README.md -------------------------------------------------------------------------------- /VISDA20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/VISDA20.md -------------------------------------------------------------------------------- /configs/joint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/configs/joint.yml -------------------------------------------------------------------------------- /configs/public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/configs/public.yml -------------------------------------------------------------------------------- /configs/visda20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/configs/visda20.yml -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/cluster.py -------------------------------------------------------------------------------- /lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/config.py -------------------------------------------------------------------------------- /lib/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dataset/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/base.py -------------------------------------------------------------------------------- /lib/dataset/build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/build_dataset.py -------------------------------------------------------------------------------- /lib/dataset/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/data_loader.py -------------------------------------------------------------------------------- /lib/dataset/dukemtmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/dukemtmc.py -------------------------------------------------------------------------------- /lib/dataset/lpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/lpw.py -------------------------------------------------------------------------------- /lib/dataset/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/market1501.py -------------------------------------------------------------------------------- /lib/dataset/msmt17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/msmt17.py -------------------------------------------------------------------------------- /lib/dataset/personx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/personx.py -------------------------------------------------------------------------------- /lib/dataset/poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/poly.py -------------------------------------------------------------------------------- /lib/dataset/rydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/rydata.py -------------------------------------------------------------------------------- /lib/dataset/rytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/rytest.py -------------------------------------------------------------------------------- /lib/dataset/synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/synthetic.py -------------------------------------------------------------------------------- /lib/dataset/transforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dataset/transforms/augmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/transforms/augmix.py -------------------------------------------------------------------------------- /lib/dataset/transforms/autoaug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/transforms/autoaug.py -------------------------------------------------------------------------------- /lib/dataset/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/transforms/transform.py -------------------------------------------------------------------------------- /lib/dataset/visda20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/visda20.py -------------------------------------------------------------------------------- /lib/dataset/visda20_pseudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/dataset/visda20_pseudo.py -------------------------------------------------------------------------------- /lib/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/evaluation.py -------------------------------------------------------------------------------- /lib/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/losses/build_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/losses/build_loss.py -------------------------------------------------------------------------------- /lib/losses/id_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/losses/id_loss.py -------------------------------------------------------------------------------- /lib/losses/metric_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/losses/metric_loss.py -------------------------------------------------------------------------------- /lib/memory_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/memory_bank.py -------------------------------------------------------------------------------- /lib/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/modeling/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/build_model.py -------------------------------------------------------------------------------- /lib/modeling/densenet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/densenet_ibn_a.py -------------------------------------------------------------------------------- /lib/modeling/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/regnet.py -------------------------------------------------------------------------------- /lib/modeling/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/resnest.py -------------------------------------------------------------------------------- /lib/modeling/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/resnet.py -------------------------------------------------------------------------------- /lib/modeling/resnet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/resnet_ibn_a.py -------------------------------------------------------------------------------- /lib/modeling/resnet_ibn_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/resnet_ibn_b.py -------------------------------------------------------------------------------- /lib/modeling/resnext_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/modeling/resnext_ibn_a.py -------------------------------------------------------------------------------- /lib/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/post_processing.py -------------------------------------------------------------------------------- /lib/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/sampler.py -------------------------------------------------------------------------------- /lib/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/train_net.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/lib/utils.py -------------------------------------------------------------------------------- /scripts/joint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/joint.sh -------------------------------------------------------------------------------- /scripts/pseudo_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/pseudo_label.sh -------------------------------------------------------------------------------- /scripts/public.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/public.sh -------------------------------------------------------------------------------- /scripts/search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/search.sh -------------------------------------------------------------------------------- /scripts/submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/submit.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /scripts/train_cam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/train_cam.sh -------------------------------------------------------------------------------- /scripts/train_uda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/scripts/train_uda.sh -------------------------------------------------------------------------------- /tech_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tech_report.pdf -------------------------------------------------------------------------------- /tools/compute_distmat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/compute_distmat.py -------------------------------------------------------------------------------- /tools/model_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/model_ensemble.py -------------------------------------------------------------------------------- /tools/pseudo_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/pseudo_label.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/train_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/train_cam.py -------------------------------------------------------------------------------- /tools/train_uda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiangyu-CAS/Yet-Another-reid-baseline/HEAD/tools/train_uda.py --------------------------------------------------------------------------------