1 Beijing University of Chemical Technology
2 Singapore University of Technology and Design
If you find our work inspiring or use our codebase in your research, please consider giving a star β and a citation.
@InProceedings{Zhao_2023_ICCV,
author = {Zhao, Qihao and Jiang, Chen and Hu, Wei and Zhang, Fan and Liu, Jun},
title = {MDCS: More Diverse Experts with Consistency Self-distillation for Long-tailed Recognition},
booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
month = {October},
year = {2023},
pages = {11597-11608}
}
python train.py -c configs/config_cifar100_ir100_mdcs.json
python test.py -r checkpoint_path
python train.py -c configs/config_imagenet_lt_resnext50_mdcs_e400.json
python test.py -r checkpoint_path
python train_places.py -c configs/config_places_lt_resnet152_mdcs.json
python test_places.py -r checkpoint_path
python train.py -c configs/config_iNaturalist_resnet50_mdcs.json
python test.py -r checkpoint_path
pip install -r requirements.txt
data
βββ ImageNet_LT
βΒ Β βββ test
βΒ Β βββ train
βΒ Β βββ val
βββ CIFAR100
βΒ Β βββ cifar-100-python
βββ Place365
βΒ Β βββ data_256
βΒ Β βββ test_256
βΒ Β βββ val_256
βββ iNaturalist
Β Β βββ test2018
βββ train_val2018
data_txt
βββ ImageNet_LT
βΒ Β βββ ImageNet_LT_test.txt
βΒ Β βββ ImageNet_LT_train.txt
βΒ Β βββ ImageNet_LT_val.txt
βββ Places_LT_v2
βΒ Β βββ Places_LT_test.txt
βΒ Β βββ Places_LT_train.txt
βΒ Β βββ Places_LT_val.txt
βββ iNaturalist18
βββ iNaturalist18_train.txt
βββ iNaturalist18_uniform.txt
βββ iNaturalist18_val.txt
The mutli-expert framework is based on SADE and [RIDE](). Strong augmentations are based on NCL and PaCo.