AIInterviewTraining logoAIInterview/Training

fairness

AI, ML & GenAI interview questions tagged fairness, across every topic.

10 questions · 1 unlocked for you

Concepts behind "fairness"

The curriculum that explains the ideas these questions test.

Core
🧠 Foundations of LLMs & GenAISign in
Multilingual Models and the Tokenization TaxMultilingual LLMs perform unevenly: best on high-resource languages (English), worse on low-resource ones, because training data is English-heavy. A subtler issue is tokenization: tokenizers trained mostly on English split other languages and non-Latin scripts into far more tokens, so the same meaning costs more tokens, more money, more latency, and less context, a real fairness and cost penalty. AI, ML, and GenAI interviews probe it because global products hit both the quality gap and the token tax, and per-language evaluation exposes what aggregates hide.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Fairness, Bias, and Model CardsModels can perform unequally across groups, inheriting and amplifying bias in the data, which is a harm and, in regulated domains, illegal. Fairness work means measuring per-group performance (not just aggregate), settling on a fairness definition (they conflict, you cannot satisfy all at once), mitigating, and documenting limits in model cards. AI, ML, and GenAI interviews probe it because aggregate accuracy hides subgroup failures, and shipping a biased model in hiring, lending, or healthcare is a serious, sometimes-unlawful failure.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Intersectional and Subgroup FairnessA model can pass a fairness audit on gender, pass on race, and fail badly on their intersection, because a single-axis audit averages away the group you most need to see. Doing it properly means fighting combinatorial explosion, small noisy cells, multiple-comparison error, and fairness gerrymandering (fair on every named group, unfair on one nobody named). AI, ML, and GenAI interviews probe it because reporting per-group metrics one axis at a time is the standard answer and it is not sufficient.