patrick-w commited on
Commit
a37f4b1
·
verified ·
1 Parent(s): 2dd0506

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language: en
4
+ library_name: pytorch
5
+ tags:
6
+ - pytorch
7
+ - medical-imaging
8
+ - chest-x-ray
9
+ - explainable-ai
10
+ - image-classification
11
+ - efficientnet
12
+ - MedicalPatchNet
13
+ ---
14
+
15
+ # MedicalPatchNet: Model Weights
16
+
17
+ This repository hosts the pre-trained model weights for **MedicalPatchNet** and the baseline **EfficientNet-B0** model, as described in our paper **MedicalPatchNet: A Patch-Based Self-Explainable AI Architecture for Chest X-ray Classification** [TODO ADD LINK].
18
+
19
+ For the complete source code, documentation, and instructions on how to train and evaluate the models, please visit our main GitHub repository:
20
+
21
+ **[https://github.com/paddyOnGithub/MedicalPatchNet](https://github.com/paddyOnGithub/MedicalPatchNet)**
22
+
23
+ ---
24
+
25
+ ## Overview
26
+
27
+ MedicalPatchNet is a self-explainable deep learning architecture designed for chest X-ray classification that provides transparent and interpretable predictions without relying on post-hoc explanation methods. Unlike traditional black-box models that require external tools like Grad-CAM for interpretability, MedicalPatchNet integrates explainability directly into its architectural design.
28
+
29
+ ### Key Features
30
+
31
+ - **Self-explainable by design**: No need for external interpretation methods like Grad-CAM.
32
+ - **Competitive performance**: Achieves comparable classification accuracy to a standard EfficientNet-B0.
33
+ - **Superior localization**: Significantly outperforms Grad-CAM variants in pathology localization tasks.
34
+ - **Faithful explanations**: Saliency maps directly reflect the model's true reasoning.
35
+
36
+ ---
37
+
38
+ ## How to Use These Weights
39
+
40
+ The weights provided here are intended to be used with the code from our [GitHub repository](https://github.com/paddyOnGithub/MedicalPatchNet).
41
+
42
+ ## Models Included
43
+
44
+ - **MedicalPatchNet**: The main patch-based, self-explainable model.
45
+ - **EfficientNet-B0**: The baseline model used for comparison with post-hoc methods (Grad-CAM, Grad-CAM++, and Eigen-CAM).
46
+
47
+ ---
48
+
49
+ ## Citation
50
+
51
+ If you use MedicalPatchNet or these model weights in your research, please cite our work:
52
+
53
+ ```bibtex
54
+ [TODO ADD CITATION]
55
+ ```