Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 2.81 KB

README.md

File metadata and controls

42 lines (31 loc) · 2.81 KB

Partition-and-Debias: Agnostic Biases Mitigation via a Mixture of Biases-Specific Experts [ICCV 2023]

Jiaxuan Li1, Minh-Duc Vo1, Hideki Nakayama1

1The University of Tokyo

Bias mitigation in image classification has been widely researched, and existing methods have yielded notable results. However, most of these methods implicitly assume that a given image contains only one type of known or unknown bias, failing to consider the complexities of real-world biases. We introduce a more challenging scenario, agnostic biases mitigation, aiming at bias removal regardless of whether the type of bias or the number of types is unknown in the datasets. To address this difficult task, we present the Partition-and-Debias (PnD) method that uses a mixture of biases-specific experts to implicitly divide the bias space into multiple subspaces and a gating module to find a consensus among experts to achieve debiased classification. Experiments on both public and constructed benchmarks demonstrated the efficacy of the PnD.

Setup

Install the required packages using conda with the provided environment.yml file.

Training and evaluation

python main.py \
--dataset bmnist --percent=5.00pct \
--device=cuda:0 \
--exp=PnD_bmnist \
--weight_decay=1e-5 \
--lr1=0.001 --lr2=0.0005 --lr_decay_step1=20 --lr_decay_step2=20 --lr_gamma=0.5 \
--temperature=0.1 --alpha1=0.2 --alpha2=2.0 --beta=4.0 --num_epochs1=70 --num_epochs2=100

Acknowledgements

This repo is built on OccamNet and DFA, we thank the authors for their great effort.

Citation

If you find our work helpful for your research, please kindly consider citing:

@InProceedings{li2023pnd,
    author    = {Li, Jiaxuan and Vo, Duc Minh and Nakayama, Hideki},
    title     = {Partition-And-Debias: Agnostic Biases Mitigation via a Mixture of Biases-Specific Experts},
    booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
    month     = {October},
    year      = {2023},
    pages     = {4924-4934}
}