Skip to content

Explainable AI

Explainable AI (XAI) refers to methods for making AI systems' decisions transparent and understandable to humans. In the context of fake news detection, explainability addresses a critical need: users and fact-checkers must understand why a system flagged content as misinformation to trust the system and potentially correct it.

Explainability approaches operate at different levels:

  • Local explanations: why a particular prediction was made for a specific input (e.g., which words or features drove a fake news classification)
  • Global explanations: what patterns the model generally uses to make decisions across all inputs
  • Rule-based explanations: decompositional or symbolic representations (decision trees, logic rules) that are human-readable by design
  • Post-hoc explanations: applying interpretability techniques (LIME, SHAP, attention weights) to already-trained "black-box" models

Key papers

Connections

  • Trustworthy AI — explainability is one pillar of trustworthiness; others include robustness, fairness, and controllability
  • Neural-symbolic AI — neural-symbolic systems are naturally more interpretable than pure neural approaches
  • Fake news detection methods — many detection methods lack explainability; new work prioritizes transparent architectures