Summary
The paper addresses debiasing in the context of Vision-Language Models (VLMs). Specifically, the authors argue that existing methods for debiasing VLMs struggle to obtain sufficient images to represent minority groups, along with high costs for labeling such minority groups. To mitigate these issues, the authors propose Text-Only Debiasing (TOD) - a simple prompt-tuning-based framework to debias VLMs through text-only training. TOD generates a balanced text-only dataset using GPT-4 and performs prompt tuning using the same. However, this faces the potential issue of the model overfitting to the text modality. To overcome this, the authors propose a Multi-Target Prediction (MTP) task to predict the index of the target and bias attributes. Experiments on the CelebA and Waterbirds datasets demonstrate the effectiveness of the proposed approach.
Strengths
- **Motivation**—The authors propose a text-only framework to mitigate the expense of image-based fine-tuning. This is based on the fact that limited data is available for minority groups, and labeling them can be quite expensive. Through a text-only approach utilizing LLMs, the proposed method can circumvent this expense and generate a balanced dataset for prompt tuning.
- **Results** - The proposed method TOD achieves significant improvements over prior works in various attribute settings in CelebA and Waterbird, demonstrating the effectiveness of the approach.
Weaknesses
### (a) Intuition behind the proposed approach
- The proposed approach - Text-only Debiasing (TOD), is based on the idea that the optimized learnable text prompts are directly applicable to the image modality due to the image and text modalities sharing a unified representation space. However, [R1] shows that the image and text embeddings of CLIP are located in two separate regions in the representation space.
- [R1] essentially contradicts one of the fundamental motivating ideas for TOD. This can imply one of the following - (i) TOD is impervious to the modality gap in CLIP or (ii) TOD somehow implicitly bridges the modality gap, which seems unlikely, based on the reviewer’s understanding since there is no training for the image encoder. Can the authors discuss the proposed method in the context of this paper and explain how TOD works despite this modality gap in CLIP?
- Additionally, since the whole proposed framework hinges on this property of CLIP, can the authors present simple motivating zero-shot experiments to show that the optimized prompts are directly applicable to the image encoder?
### (b) Experiments and results
- **Choice of bias attributes-** In L373-375, the authors list gender bias, age bias, and wavy hair bias. Similarly, in L353-355, they consider chubby, wearing a hat, and age as various bias attributes. However, there is no discussion on these choices of bias attributes from CelebA. Is there a specific reason behind the choice of these attributes, or were they randomly chosen? The authors should consider presenting a comprehensive list of experiments in the supplementary on various bias attributes of CelebA to demonstrate the effectiveness of the approach.
- **Unknown bias attributes-** In L416-422, the authors claim that existing works such as Orth-Cali require knowledge of bias attributes, while TOD does not. However, the reviewer feels that the description of TOD does not reflect this. In this experiment, the authors select an attribute at random to serve as an auxiliary attribute based on which a balanced dataset is generated. Doesn’t this count as “requiring knowledge of bias attributes” similar to Orth-Cali? Orth-Proj / Orth-Cali use knowledge of the bias attribute to obtain a projected representation without the bias attribute, while TOD uses knowledge of the bias attribute to generate a balanced dataset. Essentially, both of these methods use information of the bias attribute in some way. Could the authors clarify how TOD does not require knowledge of the bias attribute, despite the discussion seemingly pointing the other way?
- **Results in Fig. 4-** The authors demonstrate in Fig.4 that text-only training can perform on par with image-based training. However, there is no clear explanation of the experimental setup of the balanced image training setting. Can the authors provide some discussion on the details of this setup?
### (c) Minor writing issues
- There are formatting errors (Eg. Author contributions and Acknowledgments left unchanged from the template) and grammatical errors (Eg: L704-707) in the paper. Additionally, there is an error in the heading of Table 1, i.e., the top section of Table 1 should be “methods with image data”. The reviewer suggests that the authors go through the entire paper to rectify such issues.
### (c) Missing references
- R1 - Liang, Victor Weixin, et al. "Mind the gap: Understanding the modality gap in multi-modal contrastive representation learning." NeurIPS 2022..
- R2 - Seth, Ashish, Mayur Hemani, and Chirag Agarwal. "Dear: Debiasing vision-language models with additive residuals." CVPR 2023.
Questions
- Following the discussion from the second point under (b) in Weaknesses, can the authors clarify how TOD deviates from Orth-Cali and does not require prior knowledge of the bias attribute, despite the explanation indicating otherwise?
- How was the balanced image training experiment in Fig. 4 done? Can the authors provide further details of this experiment?
- Can the authors present results on the FairFace dataset in addition to CelebA and Waterbirds? It would make the experiments comprehensive and more complete.