├── .flake8 ├── .gitignore ├── .isort.cfg ├── LICENSE ├── README.md ├── datasets ├── .gitignore └── README.md ├── docs ├── GETTING_STARTED.md ├── INSTALL.md ├── LEADERBOARD.md ├── MODEL_ZOO.md ├── open_mmlab.png └── openunreid.png ├── openunreid ├── __init__.py ├── apis │ ├── __init__.py │ ├── runner.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── label_generators │ │ ├── __init__.py │ │ ├── dbscan.py │ │ └── kmeans.py │ ├── metrics │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── rank.py │ │ └── rank_cylib │ │ │ ├── Makefile │ │ │ ├── __init__.py │ │ │ ├── rank_cy.pyx │ │ │ └── setup.py │ ├── solvers │ │ ├── __init__.py │ │ ├── lr_scheduler.py │ │ └── optim.py │ └── utils │ │ ├── __init__.py │ │ ├── compute_dist.py │ │ ├── faiss_utils.py │ │ └── rerank.py ├── data │ ├── __init__.py │ ├── builder.py │ ├── datasets │ │ ├── __init__.py │ │ ├── dukemtmcreid.py │ │ ├── market1501.py │ │ ├── msmt17.py │ │ ├── personx.py │ │ ├── vehicleid.py │ │ ├── vehiclex.py │ │ └── veri.py │ ├── samplers │ │ ├── __init__.py │ │ ├── distributed_identity_sampler.py │ │ ├── distributed_sampler.py │ │ └── distributed_slice_sampler.py │ ├── transformers │ │ ├── __init__.py │ │ ├── auto_augment.py │ │ ├── gaussian_blur.py │ │ ├── mutual_transformer.py │ │ └── random_erasing.py │ └── utils │ │ ├── __init__.py │ │ ├── base_dataset.py │ │ ├── data_utils.py │ │ └── dataset_wrapper.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── discriminator.py │ │ ├── generator.py │ │ ├── resnet.py │ │ ├── resnet_ibn_a.py │ │ └── spgan.py │ ├── builder.py │ ├── layers │ │ ├── __init__.py │ │ ├── domain_specific_bn.py │ │ ├── embedding.py │ │ └── pooling.py │ ├── losses │ │ ├── __init__.py │ │ ├── classification.py │ │ ├── gan_loss.py │ │ ├── memory.py │ │ ├── sia_loss.py │ │ └── triplet.py │ └── utils │ │ ├── __init__.py │ │ ├── dsbn_utils.py │ │ ├── extract.py │ │ └── init_net.py └── utils │ ├── __init__.py │ ├── config.py │ ├── dist_utils.py │ ├── file_utils.py │ ├── image_pool.py │ ├── logger.py │ ├── meters.py │ └── torch_utils.py ├── requirements.txt ├── setup.py └── tools ├── .gitignore ├── CycleGAN ├── README.md ├── config.yaml └── main.py ├── MMT ├── README.md ├── config.yaml └── main.py ├── SPGAN ├── README.md ├── config.yaml └── main.py ├── SpCL ├── README.md ├── config.yaml └── main.py ├── UDA_TP ├── README.md ├── config.yaml └── main.py ├── dist_test.sh ├── dist_train.sh ├── slurm_test.sh ├── slurm_train.sh ├── source_pretrain ├── README.md ├── config.yaml └── main.py ├── strong_baseline ├── README.md ├── config.yaml └── main.py ├── super_strong_baseline ├── config.yaml └── main.py ├── test_gan.py └── test_reid.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/.isort.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/README.md -------------------------------------------------------------------------------- /datasets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/datasets/README.md -------------------------------------------------------------------------------- /docs/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/GETTING_STARTED.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/LEADERBOARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/LEADERBOARD.md -------------------------------------------------------------------------------- /docs/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/MODEL_ZOO.md -------------------------------------------------------------------------------- /docs/open_mmlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/open_mmlab.png -------------------------------------------------------------------------------- /docs/openunreid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/docs/openunreid.png -------------------------------------------------------------------------------- /openunreid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/__init__.py -------------------------------------------------------------------------------- /openunreid/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/apis/__init__.py -------------------------------------------------------------------------------- /openunreid/apis/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/apis/runner.py -------------------------------------------------------------------------------- /openunreid/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/apis/test.py -------------------------------------------------------------------------------- /openunreid/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/apis/train.py -------------------------------------------------------------------------------- /openunreid/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openunreid/core/label_generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/label_generators/__init__.py -------------------------------------------------------------------------------- /openunreid/core/label_generators/dbscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/label_generators/dbscan.py -------------------------------------------------------------------------------- /openunreid/core/label_generators/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/label_generators/kmeans.py -------------------------------------------------------------------------------- /openunreid/core/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/__init__.py -------------------------------------------------------------------------------- /openunreid/core/metrics/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/accuracy.py -------------------------------------------------------------------------------- /openunreid/core/metrics/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/rank.py -------------------------------------------------------------------------------- /openunreid/core/metrics/rank_cylib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/rank_cylib/Makefile -------------------------------------------------------------------------------- /openunreid/core/metrics/rank_cylib/__init__.py: -------------------------------------------------------------------------------- 1 | # Credit to https://github.com/KaiyangZhou/deep-person-reid 2 | -------------------------------------------------------------------------------- /openunreid/core/metrics/rank_cylib/rank_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/rank_cylib/rank_cy.pyx -------------------------------------------------------------------------------- /openunreid/core/metrics/rank_cylib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/metrics/rank_cylib/setup.py -------------------------------------------------------------------------------- /openunreid/core/solvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/solvers/__init__.py -------------------------------------------------------------------------------- /openunreid/core/solvers/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/solvers/lr_scheduler.py -------------------------------------------------------------------------------- /openunreid/core/solvers/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/solvers/optim.py -------------------------------------------------------------------------------- /openunreid/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openunreid/core/utils/compute_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/utils/compute_dist.py -------------------------------------------------------------------------------- /openunreid/core/utils/faiss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/utils/faiss_utils.py -------------------------------------------------------------------------------- /openunreid/core/utils/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/core/utils/rerank.py -------------------------------------------------------------------------------- /openunreid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/__init__.py -------------------------------------------------------------------------------- /openunreid/data/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/builder.py -------------------------------------------------------------------------------- /openunreid/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/__init__.py -------------------------------------------------------------------------------- /openunreid/data/datasets/dukemtmcreid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/dukemtmcreid.py -------------------------------------------------------------------------------- /openunreid/data/datasets/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/market1501.py -------------------------------------------------------------------------------- /openunreid/data/datasets/msmt17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/msmt17.py -------------------------------------------------------------------------------- /openunreid/data/datasets/personx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/personx.py -------------------------------------------------------------------------------- /openunreid/data/datasets/vehicleid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/vehicleid.py -------------------------------------------------------------------------------- /openunreid/data/datasets/vehiclex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/vehiclex.py -------------------------------------------------------------------------------- /openunreid/data/datasets/veri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/datasets/veri.py -------------------------------------------------------------------------------- /openunreid/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/samplers/__init__.py -------------------------------------------------------------------------------- /openunreid/data/samplers/distributed_identity_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/samplers/distributed_identity_sampler.py -------------------------------------------------------------------------------- /openunreid/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /openunreid/data/samplers/distributed_slice_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/samplers/distributed_slice_sampler.py -------------------------------------------------------------------------------- /openunreid/data/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/transformers/__init__.py -------------------------------------------------------------------------------- /openunreid/data/transformers/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/transformers/auto_augment.py -------------------------------------------------------------------------------- /openunreid/data/transformers/gaussian_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/transformers/gaussian_blur.py -------------------------------------------------------------------------------- /openunreid/data/transformers/mutual_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/transformers/mutual_transformer.py -------------------------------------------------------------------------------- /openunreid/data/transformers/random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/transformers/random_erasing.py -------------------------------------------------------------------------------- /openunreid/data/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openunreid/data/utils/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/utils/base_dataset.py -------------------------------------------------------------------------------- /openunreid/data/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/utils/data_utils.py -------------------------------------------------------------------------------- /openunreid/data/utils/dataset_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/data/utils/dataset_wrapper.py -------------------------------------------------------------------------------- /openunreid/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .builder import * # noqa 2 | -------------------------------------------------------------------------------- /openunreid/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/__init__.py -------------------------------------------------------------------------------- /openunreid/models/backbones/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/discriminator.py -------------------------------------------------------------------------------- /openunreid/models/backbones/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/generator.py -------------------------------------------------------------------------------- /openunreid/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/resnet.py -------------------------------------------------------------------------------- /openunreid/models/backbones/resnet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/resnet_ibn_a.py -------------------------------------------------------------------------------- /openunreid/models/backbones/spgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/backbones/spgan.py -------------------------------------------------------------------------------- /openunreid/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/builder.py -------------------------------------------------------------------------------- /openunreid/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/layers/__init__.py -------------------------------------------------------------------------------- /openunreid/models/layers/domain_specific_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/layers/domain_specific_bn.py -------------------------------------------------------------------------------- /openunreid/models/layers/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/layers/embedding.py -------------------------------------------------------------------------------- /openunreid/models/layers/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/layers/pooling.py -------------------------------------------------------------------------------- /openunreid/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/__init__.py -------------------------------------------------------------------------------- /openunreid/models/losses/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/classification.py -------------------------------------------------------------------------------- /openunreid/models/losses/gan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/gan_loss.py -------------------------------------------------------------------------------- /openunreid/models/losses/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/memory.py -------------------------------------------------------------------------------- /openunreid/models/losses/sia_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/sia_loss.py -------------------------------------------------------------------------------- /openunreid/models/losses/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/losses/triplet.py -------------------------------------------------------------------------------- /openunreid/models/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openunreid/models/utils/dsbn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/utils/dsbn_utils.py -------------------------------------------------------------------------------- /openunreid/models/utils/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/utils/extract.py -------------------------------------------------------------------------------- /openunreid/models/utils/init_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/models/utils/init_net.py -------------------------------------------------------------------------------- /openunreid/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/__init__.py -------------------------------------------------------------------------------- /openunreid/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/config.py -------------------------------------------------------------------------------- /openunreid/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/dist_utils.py -------------------------------------------------------------------------------- /openunreid/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/file_utils.py -------------------------------------------------------------------------------- /openunreid/utils/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/image_pool.py -------------------------------------------------------------------------------- /openunreid/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/logger.py -------------------------------------------------------------------------------- /openunreid/utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/meters.py -------------------------------------------------------------------------------- /openunreid/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/openunreid/utils/torch_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/setup.py -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | SDA/* 2 | -------------------------------------------------------------------------------- /tools/CycleGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/CycleGAN/README.md -------------------------------------------------------------------------------- /tools/CycleGAN/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/CycleGAN/config.yaml -------------------------------------------------------------------------------- /tools/CycleGAN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/CycleGAN/main.py -------------------------------------------------------------------------------- /tools/MMT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/MMT/README.md -------------------------------------------------------------------------------- /tools/MMT/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/MMT/config.yaml -------------------------------------------------------------------------------- /tools/MMT/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/MMT/main.py -------------------------------------------------------------------------------- /tools/SPGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SPGAN/README.md -------------------------------------------------------------------------------- /tools/SPGAN/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SPGAN/config.yaml -------------------------------------------------------------------------------- /tools/SPGAN/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SPGAN/main.py -------------------------------------------------------------------------------- /tools/SpCL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SpCL/README.md -------------------------------------------------------------------------------- /tools/SpCL/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SpCL/config.yaml -------------------------------------------------------------------------------- /tools/SpCL/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/SpCL/main.py -------------------------------------------------------------------------------- /tools/UDA_TP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/UDA_TP/README.md -------------------------------------------------------------------------------- /tools/UDA_TP/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/UDA_TP/config.yaml -------------------------------------------------------------------------------- /tools/UDA_TP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/UDA_TP/main.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/source_pretrain/README.md: -------------------------------------------------------------------------------- 1 | ## Source-domain Pre-training 2 | 3 | TODO document 4 | -------------------------------------------------------------------------------- /tools/source_pretrain/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/source_pretrain/config.yaml -------------------------------------------------------------------------------- /tools/source_pretrain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/source_pretrain/main.py -------------------------------------------------------------------------------- /tools/strong_baseline/README.md: -------------------------------------------------------------------------------- 1 | ## A Strong Clustering-based Baseline 2 | 3 | TODO document 4 | -------------------------------------------------------------------------------- /tools/strong_baseline/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/strong_baseline/config.yaml -------------------------------------------------------------------------------- /tools/strong_baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/strong_baseline/main.py -------------------------------------------------------------------------------- /tools/super_strong_baseline/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/super_strong_baseline/config.yaml -------------------------------------------------------------------------------- /tools/super_strong_baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/super_strong_baseline/main.py -------------------------------------------------------------------------------- /tools/test_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/test_gan.py -------------------------------------------------------------------------------- /tools/test_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/OpenUnReID/HEAD/tools/test_reid.py --------------------------------------------------------------------------------