REVIEW 3 major objections 5 minor 8 references
Humble AI in the real-world: the case of algorithmic hiring
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Point-score rankings in algorithmic screening are undercut by noise; ranking candidates by expected rank instead substantially recovers true fit and shifts who gets surfaced.
desk verdict Short feasibility study with a near-tautological synthetic validation and an overread real-data comparison; still worth a careful 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 central object is the rank set, a probability matrix $P=[p_{ij}]$ where $p_{ij}$ is the probability that candidate $i$ occupies rank $j$. The matrix is estimated by local perturbations: the candidate vector is randomly feature-masked in the style of the explainability method LIME, the black-box scoring function is evaluated on each perturbation, and Monte Carlo draws aggregate into rank probabilities. From $P$ the authors compute the expected rank $\sum_j p_{ij} j$, rank entropy (the entropy of the candidate's rank-probability row), and rank variance. Expected rank supplies the humble ranking, entropy flags candidates whose position is least reliable and may need manual review, and Rank Biased Overlap (RBO) measures agreement, or disagreement, with deterministic rankings.
What would settle it
Use the same hiring platform's scoring function but obtain ground-truth outcomes, such as interview success or later job performance, for screened candidates, then compare how often deterministic point-score rankings and expected-rank rankings recover that ground truth under realistic noise; if deterministic rankings match ground truth at least as often, the claim that point-score rankings are arbitrary is falsified.
Extended reading notes
Core claim
The paper's central claim is that the single point score assigned by a screening model is a noisy estimate of true fit, and that ranking candidates by that point score can therefore be arbitrary. The remedy is to replace the point score with the expected rank derived from a probability distribution over ranks: in a synthetic setting with known true ranking and added Gaussian noise, using average rank instead of the raw score considerably reduces deviations from the true ranking as noise increases. On real data from a hiring platform, the correspondence between the deterministic ranking and the uncertainty-aware ranking is very low, with RBO values near zero for several job titles, which the authors take as validating their argument for caution. The paper's position is that humility is not merely a safety value but a performance improvement: accounting for uncertainty has value in performance.
Load-bearing premise
The argument's load-bearing premise is that the noise around a candidate's true score is symmetric and that random feature masking faithfully represents what the model does not know; if real hiring-score noise is skewed or the masking is unfaithful, the expected-rank advantage weakens and disagreement between ranking schemes no longer proves arbitrariness.
Editorial extensions
If this is right
- Presenting recruiters with the expected-rank ordering instead of the raw-score ordering should reduce the chance that top-k lists are populated by noise-driven outliers.
- Candidates with high rank entropy should be surfaced for manual review rather than silently ranked, because their position is the least trustworthy.
- Because the agreement between deterministic and uncertainty-aware rankings is low, adopting the humble view can change which candidates are surfaced, not just reorder the same set.
- The synthetic experiments quantify a concrete benefit: as score noise grows, expected-rank rankings deviate from the true ranking considerably less than point-score rankings.
- Higher cognitive load from uncertainty displays will require deliberate user-experience design and recruiter training, as the focus group noted.
Reading between the lines
- A testable extension would replace symmetric normal noise with skewed, heavy-tailed, or model-specific error distributions; expected-rank gains may persist or shrink, bounding how far the synthetic result generalizes.
- If rank distributions are well calibrated, the same machinery could transfer to other consequential ranking tasks, such as loan decisions, medical triage, or scholarship shortlists, where point scores are treated as exact.
- The focus group's warning that displayed uncertainty may be misread as a property of the candidate, not the model, suggests an explicit design test: ask users where they attribute the uncertainty after using the prototype.
- A stronger real-world validation would correlate rank entropy with downstream outcomes such as interview shortlisting or job performance; if high-entropy candidates are not systematically misranked, the practical value of the entropy signal would need rethinking.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper applies Humble AI principles to algorithmic candidate screening in hiring. It proposes representing the output of a black-box scoring function as rank sets via Monte Carlo perturbation (LIME-style random feature masking) and ranking candidates by expected rank, supplemented by per-candidate entropy. It reports a synthetic experiment (Sec. 2.2) comparing deterministic and expected-rank rankings under added Gaussian noise with true ranking known, and a real-world demonstration on a hiring platform with anonymized candidate profiles for multiple job titles, in which agreement between deterministic and uncertainty-aware rankings is low (Table 1). It also describes a recruiter focus group and a UI prototype that surfaces rank uncertainty and high-entropy candidates. The authors conclude that point-score rankings can be arbitrary and that uncertainty-aware rankings improve recovery of true rankings.
Significance. If the empirical claims were established, the work would contribute a practical instantiation of Humble AI and a cautionary result for hiring platforms: point estimates of candidate scores can mis-rank candidates, and exposing uncertainty could change screening decisions. The paper's strengths are the rank-set formalism, the black-box perturbation approach, and early stakeholder feedback suggesting receptivity. However, the central validation is weak: the synthetic experiment encodes the conclusion in the noise model, and the real-data disagreement is not connected to a ground truth or to a validated perturbation distribution. The paper itself acknowledges this limitation in the Limitations paragraph, yet later states that the results 'validate our central argument.' The contribution is therefore more of an exploratory design and position work than an empirically validated technical claim; it could become a solid case study if the claims are reframed and the perturbation method is validated or compared with alternatives.
major comments (3)
- [Section 2.2, Figure 4] The synthetic validation is close to tautological. The text states that 'scores generated are drawn from a normal distribution around the true value'; under this generative model, averaging over repeated perturbations (expected rank) mechanically re-centers the noisy scores around the true value, so the expected-rank ranking will recover the true ranking better than a single noisy draw. The RBO improvement in Figure 4 is therefore a property of the assumed symmetric noise model, not evidence about real hiring-score noise. The paper should either present the synthetic result as a sanity check of the estimator, or test the robustness of expected-rank ranking under asymmetric, heteroscedastic, or skewed noise and under misspecification of the perturbation distribution.
- [Section 3, Table 1 and Limitations] The low Jaccard/RBO agreement between the deterministic ranking and the expected-rank ranking is not sufficient to show that point-score rankings are arbitrary. Expected ranks are computed from a specific perturbation distribution (LIME-style random feature masking), and no evidence is given that this distribution faithfully represents the model's ignorance about each candidate; other plausible perturbation families could yield materially different expected ranks. The Limitations paragraph concedes that the true screening outcome is not known, yet the authors state that the results 'validate our central argument for caution in deployment.' To support the arbitrariness claim, the paper would need an external validation (e.g., downstream outcomes, expert judgments, or comparison of multiple perturbation families), or the wording would need to be softened to a design motivation rather than an empirical validation.
- [Section 2, rank-set estimation] The rank-set procedure is not reproducible as described. The paper fixes a rank probability threshold (0.01) but does not report the number of Monte Carlo draws, the fraction of features masked per perturbation, the number of perturbations per candidate, or the representation of candidate profiles used for masking. These choices can strongly affect the estimated rank probabilities and hence the agreement measures in Table 1 and Figure 4; a sensitivity analysis or at least a full specification is needed before the empirical results can be assessed.
minor comments (5)
- [Section 2, entropy definition] The entropy expression should sum over ranks j, not candidates i; as written, the formula summing over i in n does not define a per-candidate entropy, so it should be corrected to sum over j.
- [Table 1 and appendix] The caption lists 'Similarity' as Jaccard Similarity and then reports RBO, but it should clarify which top-k sets are being compared (e.g., top-50 candidates) and which RBO parameter p is used, so that the comparison is interpretable.
- [Figure 4] The figure axes and legend do not state the number of candidates, the noise range, the number of trials, or the RBO parameter; adding these details and error bars would make the comparison more informative.
- [Section 4] The section is titled 'User studies' but it reports a single half-day focus group with 30 stakeholders; renaming it 'Focus group' or 'Preliminary stakeholder workshop' would better match the evidence presented.
- [Section 2, rank variance] Rank variance is mentioned as one of the quantities of interest, but no formula is given; adding a definition would make the method self-contained.
Circularity Check
Synthetic expected-rank 'improvement' is forced by the zero-mean noise definition; real-data agreement is unvalidated but not circular.
-
self definitional
[Section 2.2 (A synthetic case), Figure 4]
"For a set of candidates for whom a true ranking is assumed to be known, their scoring function is perturbed with a known amount of noise. The scores generated are drawn from a normal distribution around the true value. ... When one includes the distribution of ranks and uses average rank instead, the deviations from true rankings are considerably reduced as seen in Figure 4b."
The experiment defines the 'true value' as the mean of the normal distribution from which noisy scores are drawn. The expected-rank ranking is the ranking of those same draws' means (via the Monte Carlo rank probabilities). In the large-sample limit the expected rank orders candidates exactly by the true scores, so the RBO improvement over a single noisy draw is guaranteed by the zero-mean noise assumption. The result is therefore equivalent to the experiment's generative input, not evidence that LIME-style perturbations in real hiring data capture true suitability. The paper's later claim that this validates the central argument inherits the same construction.
full rationale
The synthetic experiment (Sec 2.2) is the only place the paper claims a quantitative performance gain from uncertainty-aware ranking; however that gain is baked into the generative model. The real-data comparison (Sec 3, Table 1) reports low agreement between deterministic and uncertainty-aware rankings, which is an empirical observation and not circular; the contested step is the interpretive leap that low agreement proves deterministic rankings are arbitrary. The paper's own Limitations paragraph concedes that true screening outcomes are unknown and that only the synthetic case offers validation, so the real-data leg is better classified as unsupported rather than circular. The Humble AI framework is cited from the authors' prior work [5], but the technical definitions (rank sets, entropy, perturbation sampling) are independently specified and no mathematical conclusion is imported from that citation. Thus the only circularity is the self-definitional synthetic validation, which is load-bearing for the 'performance' claim but not for the whole paper, giving partial circularity.
Assumptions & free parameters
free parameters (5)
- Rank probability threshold =
0.01
- Candidate pool size =
1000
- Top-k candidates shown =
50
- Synthetic noise variance range =
Varied in experiments
- Perturbation count and masking fraction
assumptions (5)
- domain assumption The scoring function is available only as a black box for inference.
- domain assumption Random feature masking yields a meaningful empirical score distribution for each candidate.
- domain assumption Entropy of rank probabilities indicates which candidates need additional manual review.
- domain assumption Higher scores indicate greater suitability for the job.
- ad hoc to paper Synthetic scores are drawn from a normal distribution around the true value.
Cite this review
Pith. "Pith review of Humble AI in the real-world: the case of algorithmic hiring." pith.science (2026). https://pith.science/paper/DWDRVN5Q
@misc{pith2026250520918,
author = {Pith},
title = {Pith review of: Humble AI in the real-world: the case of algorithmic hiring},
year = {2026},
howpublished = {\url{https://pith.science/paper/DWDRVN5Q}},
note = {Machine review of arXiv:2505.20918}
}
read the original abstract
Humble AI (Knowles et al., 2023) argues for cautiousness in AI development and deployments through scepticism (accounting for limitations of statistical learning), curiosity (accounting for unexpected outcomes), and commitment (accounting for multifaceted values beyond performance). We present a real-world case study for humble AI in the domain of algorithmic hiring. Specifically, we evaluate virtual screening algorithms in a widely used hiring platform that matches candidates to job openings. There are several challenges in misrecognition and stereotyping in such contexts that are difficult to assess through standard fairness and trust frameworks; e.g., someone with a non-traditional background is less likely to rank highly. We demonstrate technical feasibility of how humble AI principles can be translated to practice through uncertainty quantification of ranks, entropy estimates, and a user experience that highlights algorithmic unknowns. We describe preliminary discussions with focus groups made up of recruiters. Future user studies seek to evaluate whether the higher cognitive load of a humble AI system fosters a climate of trust in its outcomes.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Marianne Bertrand and Sendhil Mullainathan. 2004. Are Emily and Greg more employable than Lakisha and Jamal? A field experiment on labor market discrimi- nation.American economic review94, 4 (2004), 991–1013
work page 2004
-
[2]
Ivi Chatzi, Eleni Straitouri, Suhas Thejaswi, and Manuel Rodriguez. 2024. Prediction-powered ranking of large language models.Advances in Neural Infor- mation Processing Systems37 (2024), 113096–113133
work page 2024
-
[3]
Alessandro Fabris, Nina Baranowska, Matthew J Dennis, David Graus, Philipp Hacker, Jorge Saldivar, Frederik Zuiderveen Borgesius, and Asia J Biega. 2024. Fair- ness and bias in algorithmic hiring: A multidisciplinary survey.ACM Transactions on Intelligent Systems and Technology(2024)
work page 2024
-
[4]
World Economic Forum. 2021. Human-Centred Artificial Intelligence for Human Resources: A Toolkit for Human Resources Profession- als. https://www3.weforum.org/docs/WEF_Human_Centred_Artificial_ Intelligence_for_Human_Resources_2021.pdf
work page 2021
-
[5]
Bran Knowles, Jason D’Cruz, John T Richards, and Kush R Varshney. 2023. Humble AI.Commun. ACM66, 9 (2023), 73–79
work page 2023
-
[6]
Reuters. 2018. Insight - Amazon scraps secret AI recruiting tool that showed bias against women. https://www.reuters.com/article/world/insight- amazon-scraps-secret-ai-recruiting-tool-that-showed-bias-against-women- idUSKCN1MK0AG/
work page 2018
-
[7]
Why Should I Trust You?
Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. 2016. "Why Should I Trust You?": Explaining the Predictions of Any Classifier. InProceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, August 13-17, 2016. 1135–1144
2016
-
[8]
Erik Sink. 2006.Hazards of Hiring. Apress, Berkeley, CA, 97–109. https://doi.org/ 10.1007/978-1-4302-0143-4_10 A Selected examples Table 1 compares the performance of rank sets relative to rankings determined by a single point estimate. Generally the agreement between the two is poor, indicating that the surfaced candidates can be arbitrary. Figure 6 show...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.