├── .gitignore ├── LICENSE ├── README.md ├── configs ├── c2dres50_ce_cal.yaml ├── default_img.py ├── default_vid.py ├── res50_cels_cal.yaml ├── res50_cels_cal_16x4.yaml └── res50_cels_cal_tri_16x4.yaml ├── data ├── __init__.py ├── dataloader.py ├── dataset_loader.py ├── datasets │ ├── ccvid.py │ ├── deepchange.py │ ├── last.py │ ├── ltcc.py │ ├── prcc.py │ └── vcclothes.py ├── img_transforms.py ├── samplers.py ├── spatial_transforms.py └── temporal_transforms.py ├── losses ├── __init__.py ├── arcface_loss.py ├── circle_loss.py ├── clothes_based_adversarial_loss.py ├── contrastive_loss.py ├── cosface_loss.py ├── cross_entropy_loss_with_label_smooth.py ├── gather.py └── triplet_loss.py ├── main.py ├── models ├── __init__.py ├── classifier.py ├── img_resnet.py ├── utils │ ├── c3d_blocks.py │ ├── inflate.py │ ├── nonlocal_blocks.py │ └── pooling.py └── vid_resnet.py ├── script.sh ├── test.py ├── tools ├── eval_metrics.py └── utils.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/README.md -------------------------------------------------------------------------------- /configs/c2dres50_ce_cal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/c2dres50_ce_cal.yaml -------------------------------------------------------------------------------- /configs/default_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/default_img.py -------------------------------------------------------------------------------- /configs/default_vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/default_vid.py -------------------------------------------------------------------------------- /configs/res50_cels_cal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/res50_cels_cal.yaml -------------------------------------------------------------------------------- /configs/res50_cels_cal_16x4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/res50_cels_cal_16x4.yaml -------------------------------------------------------------------------------- /configs/res50_cels_cal_tri_16x4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/configs/res50_cels_cal_tri_16x4.yaml -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/dataloader.py -------------------------------------------------------------------------------- /data/dataset_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/dataset_loader.py -------------------------------------------------------------------------------- /data/datasets/ccvid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/ccvid.py -------------------------------------------------------------------------------- /data/datasets/deepchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/deepchange.py -------------------------------------------------------------------------------- /data/datasets/last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/last.py -------------------------------------------------------------------------------- /data/datasets/ltcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/ltcc.py -------------------------------------------------------------------------------- /data/datasets/prcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/prcc.py -------------------------------------------------------------------------------- /data/datasets/vcclothes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/datasets/vcclothes.py -------------------------------------------------------------------------------- /data/img_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/img_transforms.py -------------------------------------------------------------------------------- /data/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/samplers.py -------------------------------------------------------------------------------- /data/spatial_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/spatial_transforms.py -------------------------------------------------------------------------------- /data/temporal_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/data/temporal_transforms.py -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/__init__.py -------------------------------------------------------------------------------- /losses/arcface_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/arcface_loss.py -------------------------------------------------------------------------------- /losses/circle_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/circle_loss.py -------------------------------------------------------------------------------- /losses/clothes_based_adversarial_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/clothes_based_adversarial_loss.py -------------------------------------------------------------------------------- /losses/contrastive_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/contrastive_loss.py -------------------------------------------------------------------------------- /losses/cosface_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/cosface_loss.py -------------------------------------------------------------------------------- /losses/cross_entropy_loss_with_label_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/cross_entropy_loss_with_label_smooth.py -------------------------------------------------------------------------------- /losses/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/gather.py -------------------------------------------------------------------------------- /losses/triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/losses/triplet_loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/classifier.py -------------------------------------------------------------------------------- /models/img_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/img_resnet.py -------------------------------------------------------------------------------- /models/utils/c3d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/utils/c3d_blocks.py -------------------------------------------------------------------------------- /models/utils/inflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/utils/inflate.py -------------------------------------------------------------------------------- /models/utils/nonlocal_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/utils/nonlocal_blocks.py -------------------------------------------------------------------------------- /models/utils/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/utils/pooling.py -------------------------------------------------------------------------------- /models/vid_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/models/vid_resnet.py -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/script.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/test.py -------------------------------------------------------------------------------- /tools/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/tools/eval_metrics.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/tools/utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guxinqian/Simple-CCReID/HEAD/train.py --------------------------------------------------------------------------------