REVIEW 3 major objections 4 minor 74 references
Classifier-to-Bias: Toward Unsupervised Automatic Bias Detection for Visual Classifiers
T0 review · 3 major / 4 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read A pre-trained classifier's biases can be detected with no labeled data, using only a textual description of its task.
desk verdict Genuinely new unsupervised setting, honest first pipeline, but retrieval quality and small samples keep the central claim from being proven; worth a serious referee. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The object doing the work is the signed bias score of Eq. (1), which turns a retrieved image set into a number between $-1$ and $1$: for a fixed target class and bias attribute, it is the model's accuracy on images showing one bias class minus its average accuracy on the other bias classes of the same attribute. This score is what lets an unlabeled retrieval step yield a ranked list of biases, with positive values meaning the model does better on that bias class and negative values meaning it does worse. Two swappable components carry the rest: an LLM that proposes the bias vocabulary and generates captions, and a text-to-image retriever that supplies the pseudo-labeled images; in the reported experiments these are a lightweight instruction-tuned LLM, a contrastive language-image model, a 12-million-image corpus, and a web search engine. Because both components are task-agnostic and training-free, the same pipeline can be aimed at any classification task described in natural language.
What would settle it
Take a classification task with ground-truth labels for both target classes and bias factors, run C2B on the unlabeled pool, and then recompute the bias scores using only the ground-truth-labeled images that satisfy each caption. If the ranking of biases changes substantially when retrieval noise is removed, the pipeline's outputs are driven by retrieval artifacts rather than by the classifier's actual per-group accuracy differences.
Extended reading notes
Core claim
The central claim is that bias discovery for visual classifiers can be reformulated as a language-and-retrieval problem, removing the need for task-specific labels. C2B starts with a task description and an output class set; a large language model produces, for each class, a list of bias attributes and bias classes. A second prompting stage turns each target-bias pair into a caption, and a contrastive vision-language model retrieves the top-$k$ images for that caption from a large unlabeled database. Treating the captions as pseudo-labels, the paper computes the bias score $\phi_{y,i,j}=A_y(f,b_{i,j})-\frac{1}{n_i-1}\sum_{k\neq j}A_y(f,b_{i,k})$, the per-class accuracy gap between one bias class and its siblings. The paper reports that this pipeline outperforms a supervised open-set bias detector at recalling ground-truth biases on CelebA and ImageNet-X, while also flagging many biases absent from those annotated sets.
Load-bearing premise
The load-bearing premise is that the retrieved images really show the combination described in each caption: if 'a photo of a rectangular birdhouse' returns images that are not rectangular birdhouses, the accuracy gaps C2B reports measure retrieval noise rather than model bias, and the paper's own VQA check finds fewer than 50% of retrieved images match both the intended target and bias class.
Editorial extensions
If this is right
- A non-expert can audit any downloaded classifier with a one-sentence task description, removing the annotation bottleneck that restricts bias detection to datasets someone has already labeled.
- Bias detection is no longer limited to a predefined list: C2B proposes class-specific attributes, so it can name biases like 'camera angle: three-quarter' that benchmark annotations never record.
- In the paper's experiments, C2B misses fewer known ground-truth biases than the supervised baseline (76.9–85.1% vs. 92.3–95.9% on the tested models and tasks), while detecting biases the annotations do not contain.
- Because C2B is training-free and modular, improving the LLM or the retriever should translate directly into better bias discovery without retraining the pipeline.
Reading between the lines
- The paper's own VQA check shows fewer than half of retrieved images contain both the intended target and bias class; if a retriever with stronger compositional understanding replaces the current one, hit rates should rise and false-hit rates fall. This can be tested by re-running C2B's two evaluation protocols with a different retriever.
- The top-down LLM proposal step means biases that are not linguistically expressible, or outside the LLM's knowledge, will likely stay invisible; a hybrid that clusters the classifier's errors on retrieved images first and then uses the LLM to name each cluster could combine this approach with bottom-up discovery.
- Because the framework needs only a text description, it could in principle audit classifiers in specialized domains such as medical imaging, where the user has no labels and biases are tied to acquisition devices or hospital settings; the paper lists this as a direction but does not demonstrate it.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces Classifier-to-Bias (C2B), a pipeline for unsupervised bias detection in pretrained visual classifiers. Given only a textual task description, C2B uses an LLM to propose bias attributes and bias classes for each target class, generates captions for each target-bias pair, retrieves top-k images from CC12M or Bing via CLIP-style retrieval, and then computes per-class accuracy differences on this pseudo-labeled image set to score each proposed bias. The authors claim this is the first framework that detects biases without task-specific labeled data and without a predefined bias list. They evaluate on CelebA and ImageNet-X, comparing against the supervised B2T baseline using two evaluation protocols: matching detected biases to ground-truth annotations via SBERT similarity, and measuring agreement with VQA-generated bias pseudo-labels. The paper also includes ablations on retrieval accuracy, domain shift, threshold sensitivity, LLM choice, and retrieved-image diversity.
Significance. If the central claim held, C2B would fill a real gap: a user downloading a model could audit it with no labeled validation set and no predefined bias ontology. The paper has clear strengths in presentation and reproducibility: the code repository is public, the exact prompts are reported in Appendix I, and the supplementary material contains unusually extensive ablations, including controlled retrieval from labeled subsets (Appendix B), VQA-based retrieval checks (Appendix F), and threshold sensitivity analysis (Appendix C). However, the significance is currently limited by a load-bearing weakness: the pseudo-labeled retrieved images are only weakly validated, and the paper's own VQA analysis shows that fewer than half of retrieved images contain both the intended target and bias classes. Because the bias scores in Eq. (1) are computed over these images, the reported 'detected biases' may reflect retrieval artifacts rather than classifier behavior. The core idea is promising and modular, but the evidence as presented does not yet establish that C2B measures what it claims to measure.
major comments (3)
- [Sec. 3.4, Eq. (5); Appx. F, Tables 17-18] The load-bearing premise of the method is that the top-k retrieved images in Eq. (5) form valid pseudo-labeled datasets D(b,y), so that the accuracy values in Eq. (1) measure classifier performance on images of class y exhibiting bias class b. The paper's own VQA evaluation contradicts this premise: the 'both' accuracy is 46.5% (Bing, CelebA), 42.4% (CC12M, CelebA), 42.8% (Bing, ImageNet-X), and 38.1% (CC12M, ImageNet-X). Thus, for a majority of target-bias cells, the retrieved images do not contain the intended combination, and the per-class accuracy differences in Eq. (1) can reflect retrieval difficulty or off-target content (e.g., 'spherical birdhouse' images being rarer and harder to retrieve) rather than classifier bias. The central claim therefore requires either a demonstration that bias scores are stable when computed on VQA-confirmed subsets only, or a correction/calibration procedure that accounts for retrieval noise.
- [Sec. 4.2.1, Tables 1-2; Appx. B, Tables 5-6] The quantitative grounding for the main claim is weak in several connected ways. Ground-truth matching recovers only 10.8-12.3% of CelebA biases and 7.5-11.2% of ImageNet-X biases, with Detected->GT precision of 12.8-14.2% and 2.5-3.0% respectively. The controlled-retrieval experiments in Appendix B show that retrieving from the labeled ImageNet subset (IMAGENET-GT) lowers the ground-truth hit rate while raising VQA agreement, which is consistent with external-setting scores being dominated by retrieval noise. Moreover, all reported scores use k=20 images per cell, and no confidence intervals or significance tests are provided, so the accuracy differences behind phi are high-variance. The authors should report bootstrap or repeated-retrieval confidence intervals and show that the ranking of detected biases is stable under resampling, especially before claiming superiority over B2T.
- [Sec. 3.3-3.5; Appx. E, Tables 15-16] The discovery claim is constrained by the proposal mechanism in a way that is not fully accounted for. The pipeline proposes biases with an LLM, generates captions from those proposals, retrieves images for them, and then scores the same proposals; Appendix E shows the LLM misses roughly 67-71% of ground-truth biases, so the detected set is limited to what the LLM can verbalize. The 'new bias' percentages (68-83% on ImageNet-X) count biases absent from the annotation set, but the paper does not independently verify that these are real classifier biases rather than retrieval artifacts or semantically similar but off-target proposals. The authors should provide a validation step for novel detected biases, for example human evaluation on a sample of VQA-confirmed retrieved images, before interpreting the open-set results as evidence of discovering biases beyond the annotated sets.
minor comments (4)
- [Sec. 4.2.1, paragraph after Tables 1-2] The text says 'On ImageNet-X (Tab. 1),' but the ImageNet-X results are in Table 2; the cross-reference should be corrected.
- [Appx. B, Table 6 caption] The caption of Table 6 states 'Agreement between detected biases and VQA on CelebA,' but the table reports ImageNet-X results; this appears to be a copy-paste error.
- [Sec. 3.1, Eq. (1)] The definition of Ay(f,b_i,j) is not fully specified: the authors should clarify whether this is the accuracy on the subset of retrieved images for that target-bias pair, and how the per-class accuracy is computed when the target class is an attribute (e.g., 'smiling' vs. 'not smiling') rather than a single category.
- [Sec. 4.1, Implementation details] The paper reports per-class LLM generation times in Appendix J but does not report the total wall-clock cost of running the full pipeline over all 1000 ImageNet classes and all retrieved images; a brief cost estimate would help readers judge practical usability.
Circularity Check
No circular derivation: C2B measures the target classifier on caption-pseudo-labeled retrieved images; acknowledged retrieval noise is a validity caveat, not a by-construction reduction.
full rationale
C2B's chain is not circular. Eqs. (2)-(4) generate bias proposals and captions from the task text, Eq. (5) retrieves images by CLIP similarity, and Eq. (1) then computes per-class accuracy differences of the audited classifier on those images. The bias scores are therefore a genuine (if noisy) measurement of the classifier's outputs on pseudo-labeled samples, not a restatement of the LLM proposals or captions. Imperfect retrieval, which the paper explicitly concedes in Appendix A ('less than 50% of retrieved images correspond to both the intended target and bias classes according to VQA evaluation') and quantifies in Tables 17-18, can make individual bias scores unreliable, but that is an estimation-validity problem, not a circular one: the output does not reduce to the input by construction. Evaluation is anchored externally to CelebA and ImageNet-X ground-truth annotations and to VQA pseudo-labels, and the comparison to B2T is a fair benchmark. The only self-citation, OpenBias [17], is cited as inspiration in Related Work and is not load-bearing for C2B's claims. No circular step is exhibited, so the appropriate score is 0.
Assumptions & free parameters
free parameters (3)
- top-k retrieved images per caption =
20
- bias detection threshold tau =
0.05
- SBERT matching threshold =
0.9
assumptions (5)
- domain assumption The natural-language task description accurately and sufficiently specifies the task, input domain, and class list.
- domain assumption Text-to-image retrieval returns images that actually contain the target class and bias class described in each caption.
- domain assumption Accuracy differences on pseudo-labeled retrieved images, as defined in Eq. (1), measure classifier bias rather than retrieval artifacts or domain shift.
- domain assumption LLM-generated bias proposals are visually identifiable in images and cover a useful fraction of real biases.
- domain assumption VQA pseudo-labels are a valid oracle for validating biases not present in ground-truth annotations.
Cite this review
Pith. "Pith review of Classifier-to-Bias: Toward Unsupervised Automatic Bias Detection for Visual Classifiers." pith.science (2026). https://pith.science/paper/QR6UP5CN
@misc{pith2026250420902,
author = {Pith},
title = {Pith review of: Classifier-to-Bias: Toward Unsupervised Automatic Bias Detection for Visual Classifiers},
year = {2026},
howpublished = {\url{https://pith.science/paper/QR6UP5CN}},
note = {Machine review of arXiv:2504.20902}
}
read the original abstract
A person downloading a pre-trained model from the web should be aware of its biases. Existing approaches for bias identification rely on datasets containing labels for the task of interest, something that a non-expert may not have access to, or may not have the necessary resources to collect: this greatly limits the number of tasks where model biases can be identified. In this work, we present Classifier-to-Bias (C2B), the first bias discovery framework that works without access to any labeled data: it only relies on a textual description of the classification task to identify biases in the target classification model. This description is fed to a large language model to generate bias proposals and corresponding captions depicting biases together with task-specific target labels. A retrieval model collects images for those captions, which are then used to assess the accuracy of the model w.r.t. the given biases. C2B is training-free, does not require any annotations, has no constraints on the list of biases, and can be applied to any pre-trained model on any classification task. Experiments on two publicly available datasets show that C2B discovers biases beyond those of the original datasets and outperforms a recent state-of-the-art bias detection baseline that relies on task-specific annotations, being a promising first step toward addressing task-agnostic unsupervised bias detection.
Figures
Figures from the paper (21 more)
Reference graph
Works this paper leans on
-
[1]
Phi-3 technical report: A highly capable language model locally on your phone
Marah Abdin, Sam Ade Jacobs, Ammar Ahmad Awan, Jyoti Aneja, Ahmed Awadallah, Hany Awadalla, Nguyen Bach, Amit Bahree, Arash Bakhtiari, Harkirat Behl, et al. Phi-3 technical report: A highly capable language model locally on your phone. arXiv preprint arXiv:2404.14219, 2024. 15
arXiv 2024
-
[2]
FairML: ToolBox for diagnosing bias in predictive modeling
Julius A Adebayo et al. FairML: ToolBox for diagnosing bias in predictive modeling. PhD thesis, Massachusetts Institute of Technology, 2016. 1
work page 2016
-
[3]
Estimat- ing example difficulty using variance of gradients
Chirag Agarwal, Daniel D’souza, and Sara Hooker. Estimat- ing example difficulty using variance of gradients. In CVPR,
-
[4]
Diffusion visual counterfactual explana- tions
Maximilian Augustin, Valentyn Boreiko, Francesco Croce, and Matthias Hein. Diffusion visual counterfactual explana- tions. NeurIPS, 2022. 2
work page 2022
-
[5]
Razvan Azamfirei, Sapna R. Kudchadkar, and James Fackler. Large language models and the perils of their hallucinations. Critical Care, 27(1):120, 2023. 2
work page 2023
-
[6]
Learning to split for au- tomatic bias detection
Yujia Bao and Regina Barzilay. Learning to split for au- tomatic bias detection. arXiv preprint arXiv:2204.13749 ,
-
[7]
Clip retrieval: Easily compute clip embeddings and build a clip retrieval system with them
Romain Beaumont. Clip retrieval: Easily compute clip embeddings and build a clip retrieval system with them. https : / / github . com / rom1504 / clip - retrieval, 2022. 5
work page 2022
-
[8]
R. K. E. Bellamy, K. Dey, M. Hind, S. C. Hoffman, S. Houde, K. Kannan, P. Lohia, J. Martino, S. Mehta, A. Mo- jsilovi´c, S. Nagar, K. Natesan Ramamurthy, J. Richards, D. Saha, P. Sattigeri, M. Singh, K. R. Varshney, and Y . Zhang. Ai fairness 360: An extensible toolkit for detecting and mit- igating algorithmic bias. IBM Journal of Research and De- velopm...
work page 2019
Show all 74 references
-
[9]
Man is to computer program- mer as woman is to homemaker? debiasing word embed- dings
Tolga Bolukbasi, Kai-Wei Chang, James Zou, Venkatesh Saligrama, and Adam Kalai. Man is to computer program- mer as woman is to homemaker? debiasing word embed- dings. In NeurIPS, 2016. 1
2016
-
[10]
Gender shades: Inter- sectional accuracy disparities in commercial gender classi- fication
Joy Buolamwini and Timnit Gebru. Gender shades: Inter- sectional accuracy disparities in commercial gender classi- fication. In Proceedings of the 1st Conference on Fairness, Accountability and Transparency, 2018. 1
2018
-
[11]
Fairvis: Visual analytics for discovering intersectional bias in machine learning
´Angel Alexander Cabrera, Will Epperson, Fred Hohman, Minsuk Kahng, Jamie Morgenstern, and Duen Horng Chau. Fairvis: Visual analytics for discovering intersectional bias in machine learning. In 2019 IEEE Conference on Visual An- alytics Science and Technology (VAST), pages 46–...
2019
-
[12]
Conceptual 12M: Pushing web-scale image-text pre-training to recognize long-tail visual concepts
Soravit Changpinyo, Piyush Sharma, Nan Ding, and Radu Soricut. Conceptual 12M: Pushing web-scale image-text pre-training to recognize long-tail visual concepts. In CVPR,
-
[13]
Davide Chicco, Niklas T ¨otsch, and Giuseppe Jurman. The matthews correlation coefficient (mcc) is more reliable than balanced accuracy, bookmaker informedness, and marked- ness in two-class confusion matrix evaluation.BioData Min- ing, 14(1):13, 2021. 11
2021
-
[14]
Say my name: a model’s bias dis- covery framework
Massimiliano Ciranni, Luca Molinaro, Carlo Alberto Bar- bano, Attilio Fiandrotti, Vittorio Murino, Vito Paolo Pastore, and Enzo Tartaglione. Say my name: a model’s bias dis- covery framework. arXiv preprint arXiv:2408.09570, 2024. 2
2024
-
[15]
What could go wrong? discovering and describing failure modes in computer vision
Gabriela Csurka, Tyler L Hayes, Diane Larlus, and Riccardo V olpi. What could go wrong? discovering and describing failure modes in computer vision. In ECCV-WS, 2024. 3
2024
-
[16]
The spotlight: A general method for discov- ering systematic errors in deep learning models
Greg d’Eon, Jason d’Eon, James R Wright, and Kevin Leyton-Brown. The spotlight: A general method for discov- ering systematic errors in deep learning models. In Proceed- ings of the 2022 ACM Conference on Fairness, Accountabil- ity, and Transparency, pages 1962–1981, 2022. 1, 2
2022
-
[17]
Openbias: Open-set bias detection in text-to-image generative models
Moreno D’Inc `a, Elia Peruzzo, Massimiliano Mancini, Dejia Xu, Vidit Goel, Xingqian Xu, Zhangyang Wang, Humphrey Shi, and Nicu Sebe. Openbias: Open-set bias detection in text-to-image generative models. In CVPR, 2024. 1, 2
2024
-
[18]
The llama 3 herd of models
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Ab- hishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783 ,
-
[19]
Domino: Discovering sys- tematic errors with cross-modal embeddings
Sabri Eyuboglu, Maya Varma, Khaled Kamal Saab, Jean- Benoit Delbrouck, Christopher Lee-Messer, Jared Dunnmon, James Zou, and Christopher Re. Domino: Discovering sys- tematic errors with cross-modal embeddings. In ICLR, 2022. 1, 2
2022
-
[20]
Datacomp: In search of the next generation of multimodal datasets
Samir Yitzhak Gadre, Gabriel Ilharco, Alex Fang, Jonathan Hayase, Georgios Smyrnis, Thao Nguyen, Ryan Marten, Mitchell Wortsman, Dhruba Ghosh, Jieyu Zhang, Eyal Or- gad, Rahim Entezari, Giannis Daras, Sarah Pratt, Vivek Ra- manujan, Yonatan Bitton, Kalyani Marathe, Stephen Mus...
2023
-
[21]
Gallegos, Ryan A
Isabel O. Gallegos, Ryan A. Rossi, Joe Barrow, Md Mehrab Tanjim, Sungchul Kim, Franck Dernoncourt, Tong Yu, Ruiyi Zhang, and Nesreen K. Ahmed. Bias and fairness in large language models: A survey. Computational Linguistics, 50 (3):1097–1179, 2024. 2
2024
-
[22]
Adaptive testing of computer vision models
Irena Gao, Gabriel Ilharco, Scott Lundberg, and Marco Tulio Ribeiro. Adaptive testing of computer vision models. In ICCV, 2023. 1, 3
2023
-
[23]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR,
-
[24]
Women also snowboard: Over- coming bias in captioning models
Lisa Anne Hendricks, Kaylee Burns, Kate Saenko, Trevor Darrell, and Anna Rohrbach. Women also snowboard: Over- coming bias in captioning models. In ECCV, 2018. 1
2018
-
[25]
Generating counterfactual explanations with natural language
Lisa Anne Hendricks, Ronghang Hu, Trevor Darrell, and Zeynep Akata. Generating counterfactual explanations with natural language. In ICML-WS, 2018. 2
2018
-
[26]
Sugarcrepe: Fixing hackable benchmarks for vision-language compositionality
Cheng-Yu Hsieh, Jieyu Zhang, Zixian Ma, Aniruddha Kem- bhavi, and Ranjay Krishna. Sugarcrepe: Fixing hackable benchmarks for vision-language compositionality. NeurIPS,
-
[27]
https://huggingface.co/. 1
-
[28]
Imagenet-x: Understanding model mistakes with factor of variation annotations
Badr Youbi Idrissi, Diane Bouchacourt, Randall Balestriero, Ivan Evtimov, Caner Hazirbas, Nicolas Ballas, Pascal Vin- cent, Michal Drozdzal, David Lopez-Paz, and Mark Ibrahim. Imagenet-x: Understanding model mistakes with factor of variation annotations. In ICLR, 2023. 1, 2, 6
2023
-
[29]
Miss- ingness bias in model debugging
Saachi Jain, Hadi Salman, Eric Wong, Pengchuan Zhang, Vibhav Vineet, Sai Vemprala, and Aleksander Madry. Miss- ingness bias in model debugging. In ICLR, 2022. 2
2022
-
[30]
Distilling model failures as directions in latent space
Saachi Jain, Hannah Lawrence, Ankur Moitra, and Alek- sander Madry. Distilling model failures as directions in latent space. In ICLR, 2023. 1, 2
2023
-
[31]
Survey of hallucination in natural language generation
Ziwei Ji, Nayeon Lee, Rita Frieske, Tiezheng Yu, Dan Su, Yan Xu, Etsuko Ishii, Ye Jin Bang, Andrea Madotto, and Pascale Fung. Survey of hallucination in natural language generation. ACM Comput. Surv., 55(12), 2023. 2
2023
-
[32]
Lewis, and Guha Balakrishnan
Krish Kabra, Kathleen M. Lewis, and Guha Balakrishnan. Gelda: A generative language annotation framework to re- veal visual biases in image generators. In CVPRW, 2024. 2
2024
-
[33]
Discovering and miti- gating visual biases through keyword explanation
Younghyun Kim, Sangwoo Mo, Minkyu Kim, Kyungmin Lee, Jaeho Lee, and Jinwoo Shin. Discovering and miti- gating visual biases through keyword explanation. In CVPR,
-
[34]
Udis: Unsupervised discovery of bias in deep visual recognition models
Arvindkumar Krishnakumar, Viraj Prabhu, Sruthi Sudhakar, and Judy Hoffman. Udis: Unsupervised discovery of bias in deep visual recognition models. In BMVC, 2021. 1, 2
2021
-
[35]
Discover the unknown biased attribute of an image classifier
Zhiheng Li and Chenliang Xu. Discover the unknown biased attribute of an image classifier. In ICCV, 2021. 2
2021
-
[36]
Discover and mitigate unknown biases with debiasing alternate net- works
Zhiheng Li, Anthony Hoogs, and Chenliang Xu. Discover and mitigate unknown biases with debiasing alternate net- works. In ECCV, 2022. 2
2022
-
[37]
Just train twice: Improving group robustness without training group information
Evan Z Liu, Behzad Haghgoo, Annie S Chen, Aditi Raghu- nathan, Pang Wei Koh, Shiori Sagawa, Percy Liang, and Chelsea Finn. Just train twice: Improving group robustness without training group information. In ICML, 2021. 2
2021
-
[38]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. In NeurIPS, 2023. 7, 11
2023
-
[39]
Improved baselines with visual instruction tuning
Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. Improved baselines with visual instruction tuning. In CVPR,
-
[40]
Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024
Haotian Liu, Chunyuan Li, Yuheng Li, Bo Li, Yuanhan Zhang, Sheng Shen, and Yong Jae Lee. Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024. 11
2024
-
[41]
Deep learning face attributes in the wild
Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In ICCV, 2015. 2, 5
2015
-
[42]
Swin transformer: Hierarchical vision transformer using shifted windows
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In ICCV, 2021. 5
2021
-
[43]
Torchvision: Py- torch’s computer vision library.https://github.com/ pytorch/vision, 2016
TorchVision maintainers and contributors. Torchvision: Py- torch’s computer vision library.https://github.com/ pytorch/vision, 2016. 5
2016
-
[44]
A survey on bias and fairness in machine learning
Ninareh Mehrabi, Fred Morstatter, Nripsuta Saxena, Kristina Lerman, and Aram Galstyan. A survey on bias and fairness in machine learning. ACM computing surveys (CSUR) , 54 (6):1–35, 2021. 3
2021
-
[45]
Gemma: Open mod- els based on gemini research and technology
Thomas Mesnard, Cassidy Hardin, Robert Dadashi, Surya Bhupatiraju, Shreya Pathak, Laurent Sifre, Morgane Rivi`ere, Mihir Sanjay Kale, Juliette Love, et al. Gemma: Open mod- els based on gemini research and technology. arXiv preprint arXiv:2403.08295, 2024. 15
2024 arXiv
-
[46]
Chat markup language chatml (preview), 2024
Microsoft. Chat markup language chatml (preview), 2024. https://learn.microsoft.com/en-us/azure/ ai- services/openai/how- to/chat- markup- language, Last accessed on 2024-11-21. 13
2024
-
[47]
Model cards for model reporting
Margaret Mitchell, Simone Wu, Andrew Zaldivar, Parker Barnes, Lucy Vasserman, Ben Hutchinson, Elena Spitzer, Inioluwa Deborah Raji, and Timnit Gebru. Model cards for model reporting. In Proceedings of the conference on fairness, accountability, and transparency , pages 220–229,
-
[48]
Facexformer: A unified transformer for fa- cial analysis
Kartik Narayan, Vibashan VS, Rama Chellappa, and Vishal M Patel. Facexformer: A unified transformer for fa- cial analysis. arXiv preprint arXiv:2403.12960, 2024. 5
2024 arXiv
-
[49]
Dissecting racial bias in an algorithm used to manage the health of populations
Ziad Obermeyer, Brian Powers, Christine V ogeli, and Send- hil Mullainathan. Dissecting racial bias in an algorithm used to manage the health of populations. Science, 366(6464): 447–453, 2019. 1
2019
-
[50]
Omiye, Jenna C
Jesutofunmi A. Omiye, Jenna C. Lester, Simon Spichak, Veronica Rotemberg, and Roxana Daneshjou. Large lan- guage models propagate race-based medicine. npj Digital Medicine, 6(1):195, 2023. 2
2023
-
[51]
Learn- ing transferable visual models from natural language super- vision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super- vision. In ICML, 2021. 4
2021
-
[52]
Sentence-bert: Sentence embeddings using siamese bert-networks
Nils Reimers and Iryna Gurevych. Sentence-bert: Sentence embeddings using siamese bert-networks. In ENMLP, 2019. 6
2019
-
[53]
PRIME: Prioritizing interpretability in failure mode extraction
Keivan Rezaei, Mehrdad Saberi, Mazda Moayeri, and Soheil Feizi. PRIME: Prioritizing interpretability in failure mode extraction. In ICLR, 2024. 1, 3
2024
-
[54]
Berg, and Li Fei-Fei
Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, San- jeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei. ImageNet Large Scale Visual Recognition Chal- lenge. IJCV, 115(3):211–252, 2015. 5
2015
-
[55]
Laion-5b: An open large-scale dataset for training next generation image-text models
Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Worts- man, Patrick Schramowski, Srivatsa Kundurthy, Katherine Crowson, Ludwig Schmidt, Robert Kaczmarczyk, and Jenia Jitsev. Lai...
2022
-
[56]
A multimodal automated interpretability agent
Tamar Rott Shaham, Sarah Schwettmann, Franklin Wang, Achyuta Rajaram, Evan Hernandez, Jacob Andreas, and An- tonio Torralba. A multimodal automated interpretability agent. In ICML, 2024. 3
2024
-
[57]
Fairrag: Fair human genera- tion via fair retrieval augmentation
Robik Shrestha, Yang Zou, Qiuyu Chen, Zhiheng Li, Yusheng Xie, and Siqi Deng. Fairrag: Fair human genera- tion via fair retrieval augmentation. In CVPR, 2024. 2
2024
-
[58]
Revisiting weakly supervised pre-training of visual perception models
Mannat Singh, Laura Gustafson, Aaron Adcock, Vinicius de Freitas Reis, Bugra Gedik, Raj Prateek Kosaraju, Dhruv Mahajan, Ross Girshick, Piotr Doll ´ar, and Laurens van der Maaten. Revisiting weakly supervised pre-training of visual perception models. In CVPR, 2022. 5
2022
-
[59]
Salient imagenet: How to discover spurious features in deep learning? In ICLR, 2022
Sahil Singla and Soheil Feizi. Salient imagenet: How to discover spurious features in deep learning? In ICLR, 2022. 2
2022
-
[60]
Understanding failures of deep networks via robust feature extraction
Sahil Singla, Besmira Nushi, Shital Shah, Ece Kamar, and Eric Horvitz. Understanding failures of deep networks via robust feature extraction. In CVPR, 2021. 1
2021
-
[61]
No subclass left behind: Fine- grained robustness in coarse-grained classification problems
Nimit Sohoni, Jared Dunnmon, Geoffrey Angus, Albert Gu, and Christopher R ´e. No subclass left behind: Fine- grained robustness in coarse-grained classification problems. NeurIPS, 2020. 2
2020
-
[62]
Winoground: Probing vision and language models for visio- linguistic compositionality
Tristan Thrush, Ryan Jiang, Max Bartolo, Amanpreet Singh, Adina Williams, Douwe Kiela, and Candace Ross. Winoground: Probing vision and language models for visio- linguistic compositionality. In CVPR, 2022. 2
2022
-
[63]
When does dough become a bagel? analyzing the remaining mistakes on imagenet
Vijay Vasudevan, Benjamin Caine, Raphael Gontijo Lopes, Sara Fridovich-Keil, and Rebecca Roelofs. When does dough become a bagel? analyzing the remaining mistakes on imagenet. In NeurIPS, 2022. 1
2022
-
[64]
Revise: A tool for measuring and mitigating bias in visual datasets
Angelina Wang, Alexander Liu, Ryan Zhang, Anat Kleiman, Leslie Kim, Dora Zhao, Iroha Shirai, Arvind Narayanan, and Olga Russakovsky. Revise: A tool for measuring and mitigating bias in visual datasets. IJCV, 130(7):1790–1810,
-
[65]
Dis- covering bugs in vision models using off-the-shelf image generation and captioning
Olivia Wiles, Isabela Albuquerque, and Sven Gowal. Dis- covering bugs in vision models using off-the-shelf image generation and captioning. In NeurIPS-WS, 2022. 2
2022
-
[66]
Sigmoid loss for language image pre-training
Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. Sigmoid loss for language image pre-training. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pages 11975–11986, 2023. 2
2023
-
[67]
Siren’s song in the ai ocean: a survey on hallucination in large language models
Yue Zhang, Yafu Li, Leyang Cui, Deng Cai, Lemao Liu, Tingchen Fu, Xinting Huang, Enbo Zhao, Yu Zhang, Yu- long Chen, et al. Siren’s song in the ai ocean: a survey on hallucination in large language models. arXiv preprint arXiv:2309.01219, 2023. 2
2023 arXiv
-
[68]
Discover and mitigate multiple biased subgroups in im- age classifiers
Zeliang Zhang, Mingqian Feng, Zhiheng Li, and Chenliang Xu. Discover and mitigate multiple biased subgroups in im- age classifiers. In CVPR, 2024. 1, 2
2024
-
[69]
Under- standing and evaluating racial biases in image captioning
Dora Zhao, Angelina Wang, and Olga Russakovsky. Under- standing and evaluating racial biases in image captioning. In ICCV, 2021. 1
2021
-
[70]
Men also like shopping: Reducing gender bias amplification using corpus-level constraints
Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, and Kai-Wei Chang. Men also like shopping: Reducing gender bias amplification using corpus-level constraints. In EMNLP, 2017. 1
2017
-
[71]
camera angle: three-quarter
Zaiying Zhao, Soichiro Kumano, and Toshihiko Yamasaki. Language-guided detection and mitigation of unknown dataset bias. arXiv preprint arXiv:2406.02889, 2024. 2 CLASSIFIER -TO-BIAS: Toward Unsupervised Automatic Bias Detection for Visual Classifiers Supplementary Material Tab...
2024 arXiv
-
[72]
Generate a list of visually-identifiable bias attributes that could influence the performance of a pre-trained classifier for a given task
-
[73]
For each bias attribute, provide a list of bias classes that represent all the potential values of this attribute
-
[74]
bias attribute
Output the list of bias attributes and their classes in JSON format. Figure 19. System prompt for bias generation. Think about what characteristic or feature of the image could impact the performance of the model. Think about potential spurious correlations and potential failu...
2024
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.