Symmetry-guided explainable deep learning for colon cancer diagnosis: model benchmarking, cross-validation, statistical analysis, and explainability via ablation studies

Front Artif Intell 2026 AI 10 Explanations View Original
Original Paper (PDF)

Unable to display PDF. Download it here or view on PMC.

Plain-English Explanations
Pages 1-2
Why AI Diagnosis for Colon Cancer Needs Explainability

Colon cancer is among the leading causes of cancer death worldwide. Despite major advances in imaging and diagnostic technologies, standard diagnostic methods still depend heavily on a pathologist's subjective visual interpretation of tissue samples - a process that can be slow, inconsistent between doctors, and prone to missing subtle early-stage signs of disease.

Artificial intelligence (AI), and specifically deep learning, has shown remarkable potential for analyzing medical images. However, most AI models function as "black boxes" - they make predictions without being able to explain what visual features drove their decision. Clinicians are understandably reluctant to trust diagnostic recommendations from a system they cannot interrogate or understand.

This is where Explainable AI (XAI) becomes essential. XAI techniques add transparency to AI predictions by highlighting which regions of an image the model found most important. This allows pathologists to verify that the model is focusing on clinically relevant features - such as abnormal gland shapes or disordered cell arrangements - rather than irrelevant image artifacts.

This study addresses both challenges simultaneously: it builds a highly accurate deep learning model for detecting Colon Adenocarcinoma (the most common type of colon cancer) from histopathological tissue images, and integrates multiple XAI techniques to make the model's decision-making process transparent and trustworthy for clinical use.

TL;DR: This study builds a highly accurate AI model for detecting colon cancer in tissue samples while integrating explainability tools to ensure clinicians can understand and trust its predictions.
Page 2
Symmetry as a Biological Signal of Cancer

A key insight driving this research is that tissue symmetry is a meaningful biological marker of health. In normal colon tissue, glands are organized in predictable, regular patterns - they display radial symmetry (circular gland cross-sections), bilateral symmetry (mirrored epithelial layers), and repeated patterns across the tissue section.

As cells become cancerous through a process called malignant transformation, this orderly architecture breaks down. Colon Adenocarcinoma disrupts these symmetric arrangements through uncontrolled cell growth, irregularly shaped nuclei, invasion of surrounding tissue by cancer cells (stromal infiltration), and the progressive loss of normal glandular structure.

The researchers quantified this difference using three mathematical symmetry metrics: the Reflection Symmetry Score (measuring left-right or top-bottom mirror similarity), the Radial Symmetry Transform (measuring circular uniformity around a central point), and the Symmetry Index (measuring self-similar repeating patterns). Normal tissue scored markedly higher on all three metrics compared to cancerous tissue.

This observation - that healthy tissue is measurably more symmetric than cancerous tissue - serves a dual purpose: it provides a biologically grounded explanation for what the AI model is detecting, and it creates a way to verify that the model's attention maps (produced by XAI tools) are focusing on the right visual features, specifically the regions where symmetry is disrupted.

TL;DR: Healthy colon tissue shows regular, symmetric glandular patterns that become progressively disrupted as cancer develops, providing a biologically meaningful signal that AI can learn to detect.
Pages 3-4
The Dataset and Model Architecture

The study used a publicly available histopathological image dataset containing 10,000 images of colon tissue - 5,000 images of Colon Adenocarcinoma tissue and 5,000 images of benign (non-cancerous) colon tissue. All images are H&E stained (hematoxylin and eosin, the standard staining method in pathology) and were generated through controlled augmentations applied to 250 original images per class.

The classification model is built on VGG16, a well-established convolutional neural network (CNN) architecture that was originally trained on millions of natural images. Using a technique called transfer learning, the model's pre-trained feature detection capabilities were adapted for the specific task of recognizing colon cancer in histopathology images, with the final classification layers replaced for binary (cancer vs. normal) prediction.

Data preprocessing involved normalizing pixel values to a standard range (0-1 instead of 0-255) to improve training stability. The dataset was split 80% for training and 20% for testing, with an additional 20% of training data held out for validation during training. Standard stain normalization was attempted but ultimately omitted because it reduced performance, likely due to inconsistencies in how the augmented images were generated.

The model was trained using the Adam optimizer with binary cross-entropy loss - a standard approach for binary classification - over 10 epochs with a batch size of 32 images. Training converged rapidly, with accuracy and loss stabilizing by approximately epoch 6, demonstrating that the model quickly learned to distinguish cancer from normal tissue.

TL;DR: A VGG16-based deep learning model was trained on 10,000 H&E stained colon tissue images using transfer learning, achieving rapid convergence for binary cancer vs. normal classification.
Pages 5-6
Model Performance: Near-Perfect Accuracy

The VGG16 model achieved a test accuracy of 99.85% on the held-out test set - meaning it correctly classified cancer versus normal tissue in 9,985 out of every 10,000 images. Both precision (the proportion of cancer predictions that were correct) and recall (the proportion of actual cancer cases correctly identified) exceeded 99.8%, reflecting exceptional performance across both metrics.

The confusion matrix - a table showing correct and incorrect predictions for each class - revealed minimal misclassification. The diagonal elements, representing correct predictions, had values close to 1.0 for both the normal and cancer classes, while off-diagonal elements (misclassifications) were negligibly small. The overall loss value of 0.00079575 reflects extremely high confidence in the model's predictions.

Comparing four CNN architectures under identical training conditions, VGG16 clearly outperformed the alternatives: DenseNet121 achieved 99.0% accuracy, ResNet50 reached 75.2%, and EfficientNetB0 performed at only 50.0% (essentially random guessing). This comparison confirms that VGG16's architecture is particularly well-suited for this type of binary histopathology classification task.

Statistical analyses including paired t-tests across five-fold cross-validation confirmed that VGG16's superiority over other models is statistically significant (p-values consistently below 0.0001). The narrow confidence intervals across folds also demonstrate that the model's high performance is stable and consistent, not a result of favorable random sampling.

TL;DR: The VGG16 model achieved 99.85% accuracy in distinguishing colon cancer from normal tissue, significantly outperforming three other CNN architectures in rigorous statistical comparisons.
Pages 6-7
Three XAI Methods: How the Model Explains Itself

Grad-CAM (Gradient-weighted Class Activation Mapping) works by analyzing which parts of the image most strongly influenced the model's final decision layer. It produces a coarse heatmap overlaid on the original tissue image, with warmer colors (red/orange) highlighting regions the model judged as most important. Grad-CAM is fast and computationally efficient, making it practical for large-scale clinical deployment.

LIME (Local Interpretable Model-agnostic Explanations) explains individual predictions by testing what happens when different regions of the image are removed or masked. It identifies "superpixels" - coherent image regions - whose removal causes the greatest change in the model's prediction. LIME highlights these in yellow on the tissue image, pointing to the specific cellular structures most responsible for the classification decision.

SHAP (SHapley Additive exPlanations) is a game theory-based method that assigns an importance score to every pixel based on its contribution to pushing the model toward a particular prediction. SHAP produces detailed pixel-level heatmaps showing both positive (cancer-supporting) and negative (normal tissue-supporting) contributions. While computationally intensive, SHAP provides the most rigorous theoretical grounding for its explanations.

Critically, all three methods produced highly consistent results - their highlighted regions strongly overlapped with each other. This convergence across different algorithmic approaches provides strong evidence that the model is genuinely detecting biologically meaningful cancer features rather than spurious image patterns. The agreement also specifically aligned with regions where the symmetry analysis showed the greatest disruption of normal glandular architecture.

TL;DR: Three complementary XAI methods (Grad-CAM, LIME, and SHAP) all highlighted the same tissue regions as diagnostically important, confirming the model focuses on genuine cancer-associated features.
Pages 8-9
Cross-Validation and Symmetry Quantification

K-fold cross-validation is a rigorous method for testing whether a model's performance will hold up on new, unseen data rather than just the specific examples it was trained on. The researchers used 5-fold stratified cross-validation, dividing the 10,000 images into five equal groups and training five separate model versions, each tested on a different group. VGG16 achieved a mean cross-validation accuracy of 99.24% with a very low standard deviation of 0.001361, confirming stability across all folds.

The symmetry quantification experiment provided direct numerical evidence linking cancer to structural asymmetry. Benign tissue showed a Reflection Symmetry Score (RSS) of 0.71 - indicating strong bilateral symmetry - along with high radial symmetry peaks and high self-similarity scores. Cancer tissue showed an RSS of only 0.36, weak radial patterns, and low self-similarity, quantifying what pathologists visually recognize as tissue disorganization.

Connecting these symmetry measurements to the XAI results, the researchers found that the regions highlighted by Grad-CAM, LIME, and SHAP as most important for cancer detection were specifically the regions where this symmetry breakdown was occurring. This alignment provides biological grounding for the model's predictions - the AI is detecting the same structural abnormalities that would alert a trained pathologist.

A dropout layer with a 40% dropout rate was included in the model's classification head during cross-validation to reduce overfitting - a common problem where a model memorizes training examples rather than learning generalizable patterns. This regularization technique, combined with dynamic class weighting per fold, ensured the high accuracy results reflect genuine generalization capability.

TL;DR: Cross-validation confirmed stable 99.24% accuracy across all data splits, while symmetry metrics quantified that cancerous tissue had roughly half the structural regularity of healthy tissue.
Pages 9-11
How Well Does the Model Generalize to Other Cancers?

To test whether a model trained on colon cancer histology could recognize similar patterns in other cancer types, the researchers conducted external validation on four different datasets covering lung cancer, colorectal cancer tissue classes, gastric cancer, and gastrointestinal tract cancers.

Performance on lung adenocarcinoma was remarkably high (93.33% accuracy), which the researchers attribute to the morphological similarity between lung and colon adenocarcinoma - both cancers involve glandular tissue that disrupts similar architectural patterns. Performance on the broader colorectal cancer tissue dataset was also strong at 90.24%, confirming that the model generalizes well within the colorectal cancer domain.

Performance dropped significantly on gastric cancer (79.65% accuracy) and fell to near-chance on the broad gastrointestinal cancer dataset (41.78% accuracy). These declining results illustrate a fundamental concept in machine learning called domain shift - the model learned features specific to colon adenocarcinoma, which do not transfer cleanly to cancer types with different morphological characteristics.

These results highlight an important limitation of the current model: it is a domain-specific tool optimized for colon cancer detection, not a universal cancer classifier. The authors recommend future work using diverse multi-cancer training datasets and advanced transfer learning strategies to improve cross-cancer generalization before clinical deployment in broader settings.

TL;DR: The model generalized well to morphologically similar cancers like lung adenocarcinoma but performed poorly on cancers with distinct tissue architectures, demonstrating domain-specific learning.
Page 11
Ablation Studies: Combining XAI Methods

Ablation studies systematically test what happens when components of a system are removed or combined in different ways, revealing how each part contributes to overall performance. Here, the researchers tested all pairwise combinations of the three XAI methods (Grad-CAM plus LIME, LIME plus SHAP, SHAP plus Grad-CAM) and the full combination of all three together.

The combination quality was measured using deletion AUC scores - a metric that tests whether the highlighted regions truly correspond to the image features the model relies on. Lower deletion AUC values indicate better interpretability. When all three XAI methods were used together, deletion AUC values were consistently lower than any single method or pairwise combination, confirming that the full combination provides the most accurate and complete explanation.

Each individual method contributed distinct information: Grad-CAM provided fast, broad localization of salient tissue regions; LIME added precise boundary-level explanations for local features; and SHAP captured global contextual relationships between image regions. The synergy of all three methods produced richer, more reliable explanations than any single approach could achieve alone.

This analysis supports a practical recommendation for clinical deployment: while Grad-CAM alone is fast enough for routine screening, incorporating SHAP and LIME for ambiguous or borderline cases would provide pathologists with deeper, more trustworthy insight into why the model reached a particular conclusion - effectively creating a tiered explanation system matched to clinical urgency.

TL;DR: Combining all three XAI methods produced better explanations than any single method alone, with lower deletion AUC scores confirming more accurate identification of diagnostically relevant tissue features.
Pages 10-12
Limitations and the Path to Clinical Deployment

The study acknowledges several important limitations. The 10,000 image dataset, while substantial, was generated through augmentation of only 250 original images per class - meaning the diversity of tissue appearances the model has seen may be narrower than the full spectrum encountered in real clinical laboratories. Rare morphological variants of colon adenocarcinoma, ambiguous borderline cases, and tissue from patients with unusual clinical presentations may be underrepresented.

The model currently provides a binary prediction (cancer or normal) without any estimate of its own uncertainty or confidence. In clinical practice, flagging low-confidence predictions for mandatory pathologist review would be essential for safety. The authors suggest incorporating techniques such as Monte Carlo Dropout to generate calibrated confidence estimates, allowing the model to communicate when it is uncertain rather than always committing to a single classification.

The single-cancer focus of the model means it is designed specifically as a triage support tool for colon adenocarcinoma, not as a replacement for comprehensive pathological assessment. It cannot currently identify other tissue types, benign conditions requiring treatment, or rare cancer variants. Clinical deployment would require extensive validation on diverse, real-world datasets from multiple hospitals before regulatory approval.

Despite these limitations, the study represents meaningful progress toward trustworthy clinical AI. The combination of near-perfect accuracy and multi-method explainability demonstrates that it is possible to build AI diagnostics that are both highly precise and interpretable - addressing the two most common barriers to clinician adoption of AI in pathology.

TL;DR: The model's main limitations are its dataset diversity, lack of uncertainty estimates, and single-cancer focus, but it demonstrates that high accuracy and interpretability can coexist in clinical AI tools.
Page 12
Key Takeaways and Future Directions

This study demonstrates that a VGG16-based deep learning model trained on colon histopathology images can achieve 99.85% classification accuracy for distinguishing colon adenocarcinoma from benign tissue - performance that matches or exceeds human pathologist accuracy on well-defined cases while operating in seconds rather than minutes.

The integration of three complementary XAI techniques (Grad-CAM, LIME, and SHAP) transforms the model from an opaque black box into a transparent decision-support tool. The strong convergence between these methods, and their alignment with measurable tissue symmetry disruptions, provides biological validation that the model is detecting true cancer-associated features.

The symmetry-aware approach is a particularly novel contribution: by formally quantifying the structural symmetry of tissue and demonstrating that cancer disrupts it measurably, the researchers provide a clinically interpretable framework for understanding what the AI is learning. This bridges the gap between computational pattern recognition and the morphological reasoning that pathologists use.

Future work should focus on expanding training datasets to include more diverse tissue morphologies, integrating uncertainty quantification, testing on real-world multi-center clinical data, and incorporating this model into multi-class workflows that can handle a broader range of tissue types and pathological conditions. With these refinements, systems like this could genuinely augment pathologist capacity and improve diagnostic consistency in cancer care.

TL;DR: This work shows that combining a 99.85%-accurate VGG16 classifier with three XAI methods and symmetry analysis creates a transparent, biologically grounded colon cancer diagnostic tool ready for further clinical validation.
Citation: Open Access, . Available at: PMC13121377.