TLDR: A new research paper introduces Activation-Deactivation (AD), a novel framework for robust post-hoc Explainable AI. Unlike traditional occlusion methods that create out-of-distribution inputs, AD deactivates corresponding parts of the model, leading to more reliable explanations without needing domain knowledge. Its implementation, ConvAD, is a drop-in mechanism for CNNs that requires no extra training. Experimental results show AD explanations are consistently more robust (up to 62.5% improvement) across various models and datasets, enhancing trust in AI decisions.
In the rapidly evolving world of artificial intelligence, deep learning models are becoming indispensable across various critical sectors, from healthcare to autonomous driving. However, the complex, ‘black-box’ nature of these models often makes their decision-making processes opaque, leading to a pressing need for clear and reliable explanations. This is where Explainable AI (XAI) comes into play, aiming to shed light on why an AI makes a particular decision.
Traditional black-box explainability methods, particularly for image classifiers, often rely on creating ‘mutants’ by occluding, or blocking out, parts of the input image. While seemingly straightforward, this approach has a significant drawback: it generates images that are ‘out-of-distribution’ – meaning they don’t resemble the kind of data the model was originally trained on. This can cast doubt on the quality and trustworthiness of the explanations. Furthermore, choosing the right occlusion value often requires specialized domain knowledge, adding another layer of complexity.
A new research paper, “Activation-Deactivation: A General Framework for Robust Post-hoc Explainable AI”, introduces a groundbreaking solution to these challenges. Authored by Akchunya Chanchal, David A. Kelly, and Hana Chockler from King’s College London, the paper proposes a novel forward-pass paradigm called Activation-Deactivation (AD).
Understanding Activation-Deactivation (AD)
Instead of altering the input image itself, AD takes a fundamentally different approach. It removes the effects of occluded input features directly from the model’s decision-making process by ‘switching off’ the parts of the model that correspond to these occlusions. Imagine you want to understand why a model identified an ‘ibex’ in an image. Instead of blurring out parts of the ibex, AD ensures that the internal components of the neural network responsible for processing those ‘occluded’ parts are simply deactivated. This means the model processes an ‘unperturbed’ region, effectively remaining ‘in-distribution’ for the input features.
The researchers have also introduced ConvAD, a practical and easily implementable mechanism for Convolutional Neural Networks (CNNs). ConvAD can be seamlessly added to any trained CNN without requiring any additional training or fine-tuning. A crucial theoretical finding is that the ConvAD mechanism does not alter the original decision-making process of the network when no occlusions are present, ensuring its fidelity.
Key Advantages and Experimental Validation
The AD framework offers several significant advantages:
- Robust Explanations: By avoiding out-of-distribution inputs, AD generates more robust explanations.
- No Domain Knowledge Required: It eliminates the need for domain expertise to select appropriate occlusion values, simplifying the explanation process.
- Drop-in Mechanism: ConvAD is easy to integrate into existing CNNs.
The paper provides extensive experimental evaluation across several datasets and model architectures, including RegNetY-12GF, ResNet-50, and EfficientNet-V2, on datasets like ImageNet-1k, ImageNet-v2, CalTech-256, and PASCAL-VOC. The results consistently demonstrate a remarkable improvement in the robustness of AD explanations, showing up to a 62.5% increase compared to explanations obtained with traditional occlusion methods.
For instance, when testing explanations against solid-color backgrounds, AD explanations were significantly more robust. Even against more complex, independent and identically distributed (IID) backgrounds, where overall robustness is naturally lower, AD still outperformed other methods, suggesting a higher meaningfulness of its explanations.
Interestingly, while ConvAD explanations are generally somewhat larger, utilizing a broader portion of the input to achieve a certain confidence level, this can be seen as a positive. Larger and more robust explanations are likely to foster greater trust in both the explanation itself and the underlying AI model.
Also Read:
- Making Sense of AI: Generating Understandable Explanations for Video Summaries
- Collaborative AI Agents Reveal Their Visual Reasoning Process
Conclusion
The Activation-Deactivation framework represents a significant step forward in post-hoc explainable AI. By shifting the focus from input occlusion to model deactivation, AD and its ConvAD implementation provide a more robust, reliable, and user-friendly approach to understanding complex AI decisions. This innovation promises to increase confidence in AI systems, especially in high-stakes applications where transparency is paramount.


