Free Consultation
40+ IEEE 2026 XAI Project Ideas · 4 High-Impact Domains · Full Implementation Support

Explainable AI Project Ideas

making black-box models answer for themselves.

40+ curated Explainable AI (XAI) project ideas across four high-stakes domains — Healthcare & Medicine, Finance & Banking, Autonomous Systems & Defense, and Legal & Criminal Justice. Every topic integrates modern explanation techniques — SHAP, LIME, GradCAM, Attention Maps, Counterfactual Explanations, Concept-Based XAI (TCAV) and Causal Inference — with a complete Python implementation, IEEE 2026 base paper, fairness audit and publication-ready results. Ideal for BE, MTech and PhD final year projects and research.

SHAP · TreeExplainer · DeepSHAP GradCAM · ScoreCAM · EigenGradCAM Counterfactual (DiCE · Alibi) Causal XAI · DoWhy TCAV · Concept-Based IEEE 2026 Base Papers
40+
XAI Project Ideas
4
Critical Domains
IEEE
2026 Base Papers

Explainable ai Research Papers PDF

Explainable AI (XAI) Project Ideas 2026 — Healthcare, Finance, Autonomous Systems & Legal AI

Explainable Artificial Intelligence (XAI) is the discipline of designing or augmenting AI systems so that their internal logic, feature contributions and decision boundaries can be understood by domain experts, affected individuals, regulators and the public. As AI models permeate high-stakes domains — clinical diagnosis, algorithmic trading, autonomous vehicle control and criminal sentencing — the demand for transparent, accountable and legally compliant AI has surged dramatically. The EU AI Act (2024), GDPR Article 22 and the US FDA SaMD guidance all mandate meaningful human-readable explanations for high-risk AI decisions, making XAI no longer optional but regulatory necessity.

At ProjectsatBangalore, we offer 40+ IEEE 2026 Explainable AI project ideas spanning four critical domains with complete Python implementations, IEEE 2026 base papers, quantitative explanation evaluation (faithfulness, stability, comprehensibility) and fairness auditing. Projects are available for BE, MTech and PhD students and include SHAP, LIME, GradCAM, Integrated Gradients, Counterfactual Explanations (DiCE, Alibi), Concept-Based XAI (TCAV) and Causal XAI (DoWhy).

XAI Research Areas We Cover

  • Post-hoc local explanations — SHAP, LIME, Anchors
  • Gradient-based saliency — GradCAM, ScoreCAM, Integrated Gradients
  • Counterfactual explanations — DiCE, Alibi, NICE
  • Concept-based XAI — TCAV, Concept Bottleneck Models
  • Causal XAI — DoWhy, CausalNex, structural causal models
  • Attention map visualisation — Transformer, BERT, ViT
  • Explainable NLP — token attribution, rationale extraction
  • Fairness auditing — SHAP disparity, demographic parity, Equalized Odds
  • Medical imaging XAI — GradCAM on X-ray, CT, MRI, pathology
  • Autonomous driving XAI — LiDAR, camera decision explanation
  • Intrinsically interpretable models — EBMs, decision rules, monotone networks
  • XAI evaluation — faithfulness, stability, AOPC, insertion/deletion curves

Explainable ai Based Projects

Core XAI Explanation Methods — Quick Reference

Seven major families of XAI techniques used across all 40+ project ideas. Each method has distinct strengths — choose based on model type, data modality, explanation audience and regulatory context.

SHAP
SHapley Additive exPlanations
Game-theory-based feature attribution. Assigns each feature a Shapley value — its marginal contribution averaged over all feature subsets. Consistent, locally accurate, model-agnostic.
✦ Best for: tabular data, tree models, any classifier/regressor requiring feature importance
LIME
Local Interpretable Model-Agnostic Explanations
Perturbs the input around a specific instance, queries the black-box model and fits a sparse linear surrogate to explain that individual prediction. Works on tabular, text and image data.
✦ Best for: explaining any single prediction to a non-technical stakeholder
GradCAM / ScoreCAM
Gradient-weighted Class Activation Maps
Uses gradients of the class score with respect to feature maps in a CNN's last convolutional layer to produce a coarse localisation heatmap highlighting the discriminative image regions used for prediction.
✦ Best for: CNN classification explanations in medical imaging and visual AI
Counterfactual (DiCE / Alibi)
Counterfactual Explanations
Generates the minimum-change input that would alter the model's decision — "your loan would be approved if your income were ₹8,000 higher." Actionable, human-interpretable and legally defensible under GDPR.
✦ Best for: finance, HR and legal AI where actionable recourse is needed
Causal XAI (DoWhy)
Causal Inference & Structural Causal Models
Goes beyond correlation-based attribution to identify causal relationships between variables. Intervention and counterfactual queries via do-calculus. Enables debiasing, fairness and what-if analysis grounded in causality rather than statistics.
✦ Best for: policy AI, medical treatment effect estimation, legal fairness
Attention Maps
Transformer Attention Visualisation
Extracts and visualises self-attention weights from BERT, GPT, ViT and other transformer models to show which input tokens or image patches the model focused on when making a prediction. Used for NLP and vision XAI.
✦ Best for: explainable NLP (text classification, QA) and Vision Transformer image analysis
TCAV
Concept-Based XAI (Testing with CAVs)
Tests how sensitive a model's predictions are to user-defined concepts (e.g., "striped texture", "optic disc", "high-risk neighbourhood") using linear classifiers trained on concept examples. Produces human-interpretable concept importance scores.
✦ Best for: validating medical AI (do doctors' concepts align with model features?)
Integrated Gradients (Captum)
Integrated Gradients & DeepLIFT
Attributes the model output to input features by integrating gradients along a straight-line path from a baseline to the input. Satisfies completeness, sensitivity and implementation invariance axioms. Available in PyTorch via Captum.
✦ Best for: deep neural network explanation where SHAP KernelExplainer is too slow

Explainable ai Based Intrusion Detection System

Tools & Libraries Used in XAI Projects

Complete Python XAI toolkit used across all 40+ IEEE 2026 Explainable AI project ideas — from model training to explanation generation, evaluation and fairness auditing.

SHAP — TreeExplainer / DeepExplainer LIME — Tabular / Image / Text Captum (PyTorch XAI) pytorch-grad-cam (GradCAM / ScoreCAM) DiCE — Diverse Counterfactuals Alibi — Anchors / CF / KernelSHAP DoWhy — Causal Inference IBM AI Explainability 360 InterpretML — EBM / SHAP PyTorch / Lightning Scikit-learn / XGBoost / LightGBM Fairlearn / AIF360 Fairness Audit Plotly / Matplotlib — XAI Visualisation

Domain 1 — Healthcare & Medicine

XAI for clinical decision support, medical imaging, drug discovery, ICU mortality prediction and patient outcome modelling — with GradCAM, SHAP, Concept-Based and Counterfactual methods. Regulatory context: FDA SaMD guidance, EU AI Act Article 13 and clinical trial transparency requirements.

H-01
SHAP-Guided Explainable Sepsis Prediction from ICU EHR Data — 72-Hour Early Warning
XGBoost + SHAP TreeExplainer trained on MIMIC-IV ICU data to predict sepsis onset 72 hours before clinical diagnosis. SHAP waterfall plots explain individual patient predictions; beeswarm plots reveal global feature importance. Includes AUROC, sensitivity/specificity and SHAP-based feature interaction analysis.
SHAPXGBoostMIMIC-IVICU
IEEE TMI 2026 MTech / PhD
H-02
GradCAM + ScoreCAM Explainable Chest X-Ray Diagnosis for Pneumonia, COVID-19 and TB
ResNet-50 / DenseNet-121 trained on CheXpert + NIH ChestX-ray14 with GradCAM, GradCAM++, ScoreCAM and EigenGradCAM heatmap comparison. Radiologist alignment study using Intersection over Union (IoU) of heatmap vs. clinical ground-truth bounding boxes. Faithfulness evaluated via insertion/deletion curves.
GradCAMScoreCAMCheXpertCNN
IEEE JBHI 2026 MTech / PhD
H-03
Counterfactual Explanations for Diabetic Readmission Prediction — Actionable Clinical Recourse
LightGBM readmission classifier on UCI Diabetes 130-US dataset with DiCE diverse counterfactual generation. Clinicians receive actionable recourse: "Readmission risk drops below 20% if HbA1c is managed below 7.5% and discharge instructions are improved." Includes proximity, sparsity and plausibility metrics for counterfactual quality.
DiCECounterfactualLightGBMEHR
IEEE Access 2026 BE / MTech
H-04
Concept-Based XAI (TCAV) for Breast Cancer Histopathology Classification — Validating Pathologist Concepts
EfficientNet-B4 trained on BreakHis + TCGA-BRCA histopathology images. TCAV tests whether pathologist-defined concepts ("nuclear pleomorphism", "mitotic figures", "gland formation") align with model-internal feature representations. CAV sensitivity scores compared across benign, malignant and grade classes.
TCAVPathologyEfficientNetConcept XAI
Nature Comms Med 2026 PhD
H-05
Causal XAI with DoWhy for Estimating Drug Treatment Effect in Sepsis — Observational Study Debiasing
Structural Causal Model (SCM) on MIMIC-III ICU data to estimate Average Treatment Effect (ATE) of vasopressors on 28-day mortality, adjusting for confounders (SOFA score, age, comorbidities) using inverse probability weighting and doubly-robust estimation. DoWhy refutation tests validate causal assumptions.
DoWhyCausal XAIMIMIC-IIIATE
Lancet Digital Health 2026 PhD
H-06
Attention-Map Explainable Vision Transformer (ViT) for MRI Brain Tumour Grading — Glioblastoma vs. Meningioma
ViT-Base/16 fine-tuned on BraTS 2024 MRI dataset with Attention Rollout and DINO self-supervised attention visualisation. Explainability panels show which MRI slices and spatial regions drove grade-IV vs. grade-II classification. Grad-Rollout outperforms raw attention in clinician-blinded localisation study.
ViTAttention RolloutBraTSMRI
IEEE Trans. Med. Imaging 2026 PhD
H-07
Integrated Gradients (Captum) for Explainable Drug–Drug Interaction Prediction using Graph Neural Networks
GraphSAGE trained on DrugBank + TWOSIDES DDI dataset. Captum Integrated Gradients attributed to node and edge features to explain why a drug pair is flagged as interacting — highlighting substructures (functional groups, pharmacophores) responsible. SHAP GNN extension compared for node-level attribution consistency.
CaptumIntegrated GradientsGNNDrug Discovery
IEEE TNNLS 2026 MTech / PhD
H-08
SHAP + LIME Dual Explainer Framework for Explainable Mental Health Crisis Detection from Clinical Notes (NLP)
BioBERT fine-tuned on MIMIC-III discharge notes for depression/suicide risk classification. SHAP token-level attribution vs. LIME token perturbation explanations compared on faithfulness (AOPC), stability (std. deviation over 100 runs) and agreement score. Clinician user study measures explanation utility and trust.
SHAPLIMEBioBERTClinical NLP
IEEE Access 2026 MTech

Domain 2 — Finance & Banking

XAI for credit scoring, fraud detection, algorithmic trading, risk assessment and regulatory compliance — ensuring GDPR Article 22 "right to explanation" and RBI/SEBI model risk management mandates are met through SHAP, LIME, EBM and Counterfactual explanations.

F-01
SHAP-Based Explainable Credit Scoring with GDPR Right-to-Explanation Compliance — Indian Banking Dataset
XGBoost / LightGBM credit default model on RBI-published Loan Default dataset + CIBIL bureau data. SHAP force plots for individual loan rejection explanation letters (GDPR Art. 22 compliant). SHAP dependence plots reveal non-linear income–debt interactions. Fairness audit on gender and age attributes using Fairlearn.
SHAPGDPR Art. 22Credit ScoringFairlearn
IEEE Access 2026 MTech
F-02
LIME + Anchors Explainable Fraud Detection for UPI and Credit Card Transactions — Real-Time Explanation
Imbalanced-class fraud detection using SMOTE + Random Forest / Isolation Forest on PaySim + IEEE-CIS Fraud dataset. LIME explains why a transaction was flagged (e.g., "unusual merchant category + 3 AM transaction + new device"). Anchors generate rule-based explanations. Real-time explanation latency benchmarked (<50 ms target).
LIMEAnchorsFraud DetectionUPI
IEEE Transactions on Services 2026 MTech / PhD
F-03
Explainable Boosting Machine (EBM) for Mortgage Default Prediction — Intrinsically Interpretable Model with SHAP
Microsoft InterpretML's Explainable Boosting Machine trained on Fannie Mae mortgage dataset — achieves near-XGBoost AUROC while being glass-box interpretable. Each feature's shape function and interaction terms visualised. SHAP and EBM explanations compared for regulator-facing model documentation. Monotonicity constraints ensure income → risk relationship is economically rational.
EBMInterpretMLMortgageMonotone
Expert Systems with Applications 2026 MTech
F-04
Causal XAI for Loan Default Prediction — Debiasing Protected Attributes with DoWhy + Structural Causal Models
DoWhy SCM on HMDA (Home Mortgage Disclosure Act) dataset to distinguish direct causal effect of income on default from indirect paths through neighbourhood race composition (redlining proxy). Interventional fairness enforced by blocking discriminatory causal paths. Compares with post-processing fairness correction baselines.
DoWhyCausal FairnessHMDADebiasing
ACM FAccT 2026 PhD
F-05
Counterfactual Recourse for Explainable Insurance Premium Pricing — NICE Algorithm for Minimum-Effort Recourse
NICE (Nearest Instance Counterfactual Explanation) on health insurance premium prediction model — generates the minimum lifestyle changes (BMI, smoking, activity level) needed to reduce a customer's premium category. Proximity, plausibility and diversity of counterfactuals evaluated. Regulatory compliance with IRDAI model transparency guidelines.
NICECounterfactualInsuranceAlibi
IEEE Access 2026 BE / MTech
F-06
SHAP Temporal Analysis for Explainable Algorithmic Trading — Which Market Signals Drive Buy/Sell Decisions?
LSTM + XGBoost ensemble stock price prediction on NSE/BSE data with time-step-level SHAP DeepExplainer values showing which technical indicators (RSI, MACD, volume spike, sentiment score) drove each trading signal. Rolling SHAP window analysis reveals regime changes. Backtested on Nifty50 data 2020–2025.
SHAP DeepExplainerLSTMAlgorithmic TradingNSE
Applied Soft Computing 2026 MTech
F-07
Explainable Anti-Money Laundering (AML) Graph Neural Network — SHAP-Based Transaction Network Explanation
GraphSAGE trained on Elliptic Bitcoin dataset for money laundering detection. SHAP GNN explainer highlights which transaction-graph neighbours and edge features (transaction volume, time delta, address reuse) contributed most to the suspicious classification. Attention-based GNN explanation compared as baseline.
SHAP + GNNAMLEllipticTransaction Graph
IEEE Transactions on Computational Social Systems 2026 PhD
F-08
Fairness-Aware XAI for SME Loan Approval — SHAP Disparity Decomposition across Firm Size, Region and Gender
Random Forest + SHAP on RBI MUDRA / SIDBI SME loan dataset. SHAP disparity decomposition separates explained disparity (legitimate financial features) from unexplained disparity (proxy discrimination via firm location, owner gender). AIF360 and Fairlearn post-processing compared. Output: regulator-ready fairness report with per-group SHAP profiles.
SHAP DisparityAIF360SME LoanFairness
IEEE TNNLS 2026 PhD

Domain 3 — Autonomous Systems & Defense

XAI for autonomous vehicles, UAVs/drones, robot navigation, sensor fusion and defense AI — enabling safety certification (ISO 26262, SOTIF, MIL-STD-882), edge-case failure analysis and human-on-the-loop decision transparency for safety-critical deployments.

A-01
GradCAM Explainability for Autonomous Vehicle Lane Detection CNN — Failure Case Analysis at Adversarial Weather
DeepLab-v3+ lane segmentation model trained on BDD100K + nuScenes. GradCAM heatmaps visualise which road regions drive lane prediction at night, rain and fog. Failure analysis: GradCAM reveals the model attends to guardrails instead of lane markings in heavy rain. Eigen-GradCAM reduces noise; post-hoc segmentation XAI verified against human annotations.
GradCAMLane DetectionBDD100KAV Safety
IEEE Trans. IV 2026 MTech / PhD
A-02
SHAP-Based Sensor Fusion Explainability for LiDAR-Camera 3D Object Detection — Why Did the AV Miss a Pedestrian?
PointPillars + camera fusion trained on KITTI / Waymo Open Dataset. SHAP KernelExplainer quantifies each sensor stream's (LiDAR intensity, RGB camera, radar) contribution to each 3D bounding box confidence score. Edge case analysis: SHAP reveals camera dominates at low LiDAR point density — motivating adaptive fusion weighting.
SHAPLiDAR-Camera FusionPointPillarsKITTI
IEEE RA-L 2026 PhD
A-03
Counterfactual XAI for Autonomous Drone Trajectory Planning — Minimum-Change Obstacle Avoidance Explanations
Deep Reinforcement Learning (DRL) policy for UAV path planning in cluttered 3D environments. DiCE counterfactual generation explains: "The drone chose path A over path B because path B had an obstacle within 1.2 m at 3.4-second lookahead." State-space counterfactuals validated in Gazebo simulation. Human pilot study measures explanation utility for safety auditing.
DiCEDRLDrone XAIGazebo
IEEE Trans. Aerospace 2026 PhD
A-04
Attention-Map XAI for Transformer-Based Pedestrian Intent Prediction — Explaining "Will This Person Cross the Road?"
Pedestrian action transformer (PAT) on JAAD + PIE pedestrian datasets. Multi-head attention rollout visualises which past body poses, gaze direction frames and crossing-context features (signal state, kerb proximity) the model attends to when predicting crossing intent. Critical for AV ethics: the model must not discriminate by pedestrian appearance.
Attention RolloutTransformerJAAD/PIEPedestrian
IEEE Trans. ITS 2026 MTech / PhD
A-05
SHAP + LIME Explainable Anomaly Detection for Industrial Robot Predictive Maintenance — Bearing Fault XAI
Autoencoder + XGBoost anomaly detection on CWRU Bearing + PHM Challenge datasets. SHAP waterfall plots explain which frequency-domain vibration features (RMS, kurtosis, envelope spectrum peak at BPFO) triggered a bearing fault alert. LIME time-series explainer applied to raw waveform for maintenance engineer dashboards.
SHAPLIMEBearing FaultPredictive Maintenance
IEEE Trans. Industrial Informatics 2026 MTech
A-06
Causal XAI for Explainable Target Classification in SAR (Synthetic Aperture Radar) Defense Imagery
CNN trained on MSTAR + OpenSARShip SAR datasets for military vehicle classification. Causal intervention (do-calculus via DoWhy) identifies whether the model classifies based on genuine radar backscatter signatures or on spurious correlations (image capture angle, operating frequency artefacts). GradCAM confirms causal attribution; adversarial patch robustness verified.
Causal XAIGradCAMSARDefense AI
IEEE GRSL 2026 PhD
A-07
Integrated Gradients Explainability for End-to-End Autonomous Driving Neural Network — DAVE-2 / PilotNet Attribution
Captum Integrated Gradients on PilotNet (NVIDIA DAVE-2 style end-to-end AV network) trained on CARLA simulation + comma2k19 real-world data. Attribution maps show which road scene pixels cause steering corrections — verifying the network attends to lane markings and not sky texture. Sensitivity to adversarial road patches analysed for safety certification.
Integrated GradientsCaptumPilotNetCARLA
IEEE Trans. Vehicular Technology 2026 MTech / PhD
A-08
Explainable Multi-Agent Reinforcement Learning (MARL) for Swarm Drone Coordination — Role-Based SHAP Attribution
Multi-agent PPO for swarm UAV target search on AirSim. SHAP values computed per agent at each timestep — explaining which neighbour positions, relative velocities and target-detection signals drove each agent's velocity command. Role attribution reveals emergent specialisation (scouts vs. pursuers). Explanation fidelity measured by removing high-SHAP features and observing performance degradation.
SHAP MARLSwarm UAVAirSimPPO
IEEE RA-L 2026 PhD

All 32 XAI Project Ideas — Quick Reference Table

All topics with XAI method, domain, tools and level at a glance. Call 9591912372 to confirm topic availability, get the full research specification and start within 48 hours.

# Project Title (Short) Domain XAI Method Tools Level
H-01Explainable Sepsis Prediction — 72-Hour ICU Early WarningHealthcareSHAPXGBoost, SHAP, MIMIC-IV, PandasMTech
H-02GradCAM Chest X-Ray Diagnosis ExplanationHealthcareGradCAMPyTorch, pytorch-grad-cam, CheXpert, ResNet-50MTech
H-03Counterfactual Explanations for Diabetic ReadmissionHealthcareDiCE / CFDiCE, LightGBM, UCI Diabetes, PythonBE/BTech
H-04TCAV Concept XAI for Breast Cancer HistopathologyHealthcareTCAVPyTorch, TCAV, BreakHis, EfficientNet-B4PhD
H-05Causal XAI — Drug Treatment Effect in Sepsis (DoWhy)HealthcareCausalDoWhy, MIMIC-III, Python, CausalNexPhD
H-06Attention XAI for ViT Brain Tumour MRI GradingHealthcareAttentionViT, Captum, BraTS 2024, PyTorchPhD
H-07Integrated Gradients for Drug–Drug Interaction GNNHealthcareIntegrated Grad.Captum, PyG, DrugBank, GraphSAGEMTech
H-08SHAP + LIME — Mental Health Crisis Detection NLPHealthcareSHAP+LIMESHAP, LIME, BioBERT, MIMIC-III NLPMTech
F-01SHAP Explainable Credit Scoring — GDPR CompliantFinanceSHAPXGBoost, SHAP, Fairlearn, PythonMTech
F-02LIME + Anchors Explainable UPI Fraud DetectionFinanceLIME / AnchorsLIME, Alibi, Random Forest, PaySimMTech
F-03Explainable Boosting Machine for Mortgage DefaultFinanceEBM / SHAPInterpretML, EBM, SHAP, Fannie Mae dataMTech
F-04Causal XAI for Loan Default — Debiasing via DoWhyFinanceCausalDoWhy, HMDA Dataset, Python, AIF360PhD
F-05Counterfactual Recourse for Insurance Premium (NICE)FinanceNICE / CFAlibi NICE, Scikit-learn, PythonBE/BTech
F-06SHAP Temporal Analysis for Algorithmic Trading (NSE)FinanceSHAP DeepExplainerSHAP, LSTM, XGBoost, NSE/BSE dataMTech
F-07Explainable AML GNN — Transaction Network SHAPFinanceSHAP + GNNPyG, GraphSAGE, SHAP, Elliptic datasetPhD
F-08Fairness-Aware XAI for SME Loan Approval — IndiaFinanceSHAP DisparitySHAP, Fairlearn, AIF360, Random ForestPhD
A-01GradCAM AV Lane Detection — Adverse Weather XAIAutonomousGradCAMpytorch-grad-cam, DeepLab-v3+, BDD100KMTech
A-02SHAP LiDAR-Camera Sensor Fusion ExplainabilityAutonomousSHAPSHAP, PointPillars, KITTI, PyTorchPhD
A-03DiCE Counterfactual XAI for Drone Trajectory DRLAutonomousDiCE / CFDiCE, Stable-Baselines3, Gazebo, PythonPhD
A-04Attention XAI for Pedestrian Intent PredictionAutonomousAttention RolloutAttention Rollout, PAT, JAAD, PyTorchMTech
A-05SHAP + LIME — Predictive Maintenance Bearing FaultAutonomousSHAP + LIMESHAP, LIME, XGBoost, CWRU datasetMTech
A-06Causal XAI for SAR Defense Target ClassificationAutonomousCausal + GradCAMDoWhy, GradCAM, PyTorch, MSTARPhD
A-07Integrated Gradients — DAVE-2 End-to-End AV XAIAutonomousIntegrated Grad.Captum, PilotNet, CARLA, PyTorchMTech
A-08SHAP MARL for Swarm UAV Coordination XAIAutonomousSHAP MARLSHAP, PPO, AirSim, Stable-Baselines3PhD
L-01Explainable Recidivism — Beyond COMPAS with SHAPLegal / CJSHAP + DiCESHAP, DiCE, XGBoost, COMPAS / NIJ dataPhD
L-02TCAV Concept XAI for Legal Judgement PredictionLegal / CJTCAVTCAV, Legal-BERT, ECHR, PyTorchPhD
L-03Causal Fairness Audit for Criminal Sentencing AILegal / CJCausal FairnessDoWhy, AIF360, Python, US Sentencing dataPhD
L-04LIME + Attention — Contract Clause Risk ClassificationLegal / CJLIME + AttentionLIME, Legal-BERT, CUAD, HuggingFaceMTech
L-05SHAP Explainable Bail Decision Audit SystemLegal / CJSHAPSHAP, AIF360, Fairlearn, XGBoostPhD
L-06DiCE Counterfactuals for Parole Decision AILegal / CJDiCE / CFDiCE, Random Forest, Python, FairlearnPhD
L-07Attention + SHAP — Explainable Hate Speech DetectionLegal / CJSHAP + AttentionSHAP, RoBERTa, HateXplain, FairlearnMTech
L-08Integrated Gradients + Anchors — Forensic Document AILegal / CJIntegrated Grad.Captum, Alibi, BERT, ResNet, PythonMTech

ℹ️ 10+ additional XAI topics available — including XAI for NLP summarisation, recommendation systems, energy grid forecasting and cybersecurity intrusion detection. WhatsApp +91 9591912372 with your domain preference, model type and submission deadline.

Need a complete IEEE 2026 Explainable AI project — implemented and ready to submit?

Share your preferred domain (Healthcare / Finance / Autonomous / Legal), XAI method (SHAP / LIME / GradCAM / Counterfactual / Causal), model type (tabular ML, CNN, Transformer, GNN, RL) and submission deadline — we'll confirm the project specification, IEEE 2026 base paper and start within 48 hours. Full package: Python code, trained model, XAI explanation visualisations, fairness audit, IEEE paper, project report, PPT and viva Q&A support.

FAQ — Explainable AI Project Ideas

What is the difference between post-hoc and ante-hoc (intrinsic) XAI — and which should I choose for my project?
Post-hoc XAI applies an explanation method to an already-trained black-box model — SHAP, LIME, GradCAM and Counterfactual Explanations are all post-hoc. The model itself is unchanged; the explainer reverse-engineers its behaviour. Post-hoc methods work with any existing model (XGBoost, CNN, BERT) and are therefore practical for industry settings where the model is fixed. They are currently the dominant approach in IEEE 2026 research — SHAP TreeExplainer is the most commonly used in tabular ML papers, GradCAM in medical imaging. Ante-hoc (intrinsic) XAI builds interpretability directly into the model architecture — Explainable Boosting Machines (EBMs), Decision Trees, Concept Bottleneck Models, Monotone Neural Networks and Linear Models are all intrinsically interpretable. They sacrifice some predictive accuracy for transparency. Ante-hoc models are preferred by regulators (RBI, FDA, EBA) because they are glass-box — no explanation fidelity gap. For MTech projects, post-hoc XAI on a state-of-the-art model (XGBoost + SHAP, CNN + GradCAM) typically produces the best AUROC and the richest IEEE paper; for PhD research, comparing post-hoc vs. ante-hoc explanation quality with faithfulness metrics (AOPC, insertion/deletion) provides a strong novel contribution.
How is explanation faithfulness evaluated in an XAI project?
Explanation faithfulness measures how accurately an explanation reflects the model's actual reasoning — not just what sounds plausible to a human. Key evaluation metrics: AOPC (Area Over the Perturbation Curve) — iteratively removes the most important features (per SHAP/LIME) and measures the resulting model performance drop; a faithful explanation causes larger drops. Insertion and Deletion Curves (Samek et al.) — start with a fully masked input and insert features in order of importance; AUC of the resulting accuracy curve measures faithfulness. Stability / Consistency — run the explainer 100 times with different random seeds and measure the standard deviation of feature attribution vectors; LIME is notably unstable (high std), SHAP TreeExplainer is deterministic. Sanity Checks (Adebayo et al.) — randomise model weights and verify that explanations change (if they don't, the explainer is not actually explaining the model). Human-Grounded Evaluation — domain expert (clinician, financial analyst, lawyer) judges whether the top-5 SHAP features match their professional understanding of the decision. All these evaluation methods are implemented in our XAI project packages to ensure IEEE-publishable explanation quality assessment.
Which XAI method is most legally defensible under GDPR Article 22 and the EU AI Act for Finance and Legal AI projects?
Under GDPR Article 22 ("right to explanation" for automated decisions), the European Data Protection Board (EDPB) guidelines favour Counterfactual Explanations as most legally defensible — they directly answer "what would need to change for the decision to be different?" (e.g., "your loan would be approved if income exceeded ₹8 lakh") and enable actionable recourse, which is a key GDPR requirement. SHAP explanations are accepted by regulators as model risk management evidence (under EBA/RBI model risk guidelines) but require careful communication — raw SHAP waterfall plots are not intelligible to a layperson, so they must be translated into plain-English explanation letters. The EU AI Act (2024) Article 13 (Transparency) and Annex IV (technical documentation) require high-risk AI providers to document feature importance — SHAP global importance plots satisfy this. Intrinsically interpretable models (EBMs, monotone networks) are the gold standard for regulatory compliance as they require no post-hoc explanation gap. For PhD research in legal AI or finance XAI, we recommend implementing SHAP + DiCE together — SHAP for global model audit and DiCE counterfactuals for individual decision explanation, covering both regulatory documentation and consumer-facing recourse requirements simultaneously.
Can SHAP be applied to deep learning / neural networks — or is it only for tree models?
SHAP has multiple backend explainers for different model architectures: TreeExplainer — exact, fast SHAP values for tree ensembles (XGBoost, LightGBM, Random Forest, CatBoost); runs in O(TLD²) — suitable for models with millions of parameters. DeepExplainer — approximate SHAP for PyTorch and TensorFlow deep neural networks using a variant of DeepLIFT; much faster than KernelExplainer for large networks. GradientExplainer — uses expected gradients (a SHAP-consistent extension of Integrated Gradients) for neural networks; supports convolutional feature maps. KernelExplainer — model-agnostic, works on any black-box including LLMs, RL policies and ensemble stacks; computationally expensive (O(2^n) exact or Monte Carlo approximation) but universally applicable. LinearExplainer — exact SHAP for linear models; analytically computed from model coefficients. For medical imaging CNNs, GradientExplainer or GradCAM-SHAP (pixel-level SHAP using gradient-weighting on conv feature maps) is recommended. For BERT/transformer NLP, SHAP KernelExplainer on sentence embeddings or token-level Integrated Gradients via Captum are preferred — raw attention weights are not SHAP-consistent and can be misleading as standalone explanations.
What datasets are used in Healthcare, Finance, Autonomous and Legal XAI projects?
Healthcare: MIMIC-III / MIMIC-IV (ICU EHR, 40,000+ patients, PhysioNet), CheXpert (224,000 chest X-rays, Stanford), NIH ChestX-ray14, BreakHis (breast histopathology), BraTS 2024 (brain tumour MRI), UCI Diabetes 130-US (readmission), DrugBank + TWOSIDES (drug interaction). Finance: UCI Credit Card Default, Kaggle IEEE-CIS Fraud Detection, Fannie Mae Mortgage Performance, HMDA (Home Mortgage Disclosure Act), Elliptic Bitcoin Transactions (AML), PaySim synthetic mobile money, NSE / BSE historical OHLCV data (via yfinance). Autonomous Systems: KITTI Vision Benchmark (3D detection), BDD100K (lane detection), nuScenes (sensor fusion), JAAD + PIE (pedestrian intent), CWRU Bearing Dataset (predictive maintenance), MSTAR (SAR defense), comma2k19 (end-to-end driving), Waymo Open Dataset. Legal / Criminal Justice: ProPublica COMPAS (recidivism, n=7,200), NIJ Recidivism Challenge (n=26,000), ECHR (European Court of Human Rights judgements), CUAD (500 contracts, 41 clause types), US Sentencing Commission data, Arnold Foundation PSA (bail), HateXplain (hate speech with human rationales). All datasets are publicly available, freely downloadable and used within academic fair-use / research-only terms.