gitextract_7h4tsjq6/ ├── LICENSE ├── README.md ├── clustercontrast/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── dukemtmcreid.py │ │ ├── market1501.py │ │ ├── msmt17.py │ │ ├── personx.py │ │ └── veri.py │ ├── evaluation_metrics/ │ │ ├── __init__.py │ │ ├── classification.py │ │ └── ranking.py │ ├── evaluators.py │ ├── models/ │ │ ├── __init__.py │ │ ├── cm.py │ │ ├── dsbn.py │ │ ├── kmeans.py │ │ ├── pooling.py │ │ ├── resnet.py │ │ ├── resnet_ibn.py │ │ └── resnet_ibn_a.py │ ├── trainers.py │ └── utils/ │ ├── __init__.py │ ├── data/ │ │ ├── __init__.py │ │ ├── base_dataset.py │ │ ├── preprocessor.py │ │ ├── sampler.py │ │ └── transforms.py │ ├── faiss_rerank.py │ ├── faiss_utils.py │ ├── infomap_cluster.py │ ├── infomap_utils.py │ ├── logging.py │ ├── meters.py │ ├── osutils.py │ ├── rerank.py │ └── serialization.py ├── examples/ │ ├── cluster_contrast_train_usl.py │ ├── cluster_contrast_train_usl_infomap.py │ ├── logs/ │ │ └── log.txt │ ├── pretrained/ │ │ └── resnet50-19c8e357.pth │ └── test.py ├── run_code.sh └── setup.py