Spaces:
Sleeping
Sleeping
Commit
·
ea22464
1
Parent(s):
677a94c
Update readme.md
Browse files- README.md +26 -1
- images/app.gif +0 -0
README.md
CHANGED
|
@@ -1 +1,26 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Guided Backpropagation Visualization
|
| 2 |
+
|
| 3 |
+
This project is a Gradio app that visualize activation maps and input gradients for deep learning models interactively. Using guided backpropagation, spatial regions of input images that most contribute to the prediction are highlighted. There are two models available: VGG19 and AlexNet. To get obtain activation maps and input gradients, Pytorch's forward and backward hooks are used.
|
| 4 |
+
|
| 5 |
+
[](images/app.gif)
|
| 6 |
+
|
| 7 |
+
### Run on HuggingFace
|
| 8 |
+
|
| 9 |
+
### Run locally
|
| 10 |
+
|
| 11 |
+
Create a conda environment and install required packages
|
| 12 |
+
|
| 13 |
+
```
|
| 14 |
+
conda create -n grad_app python=3.11
|
| 15 |
+
pip install -r requirements.txt
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
Run the application
|
| 19 |
+
|
| 20 |
+
```
|
| 21 |
+
python app.py
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
## Contributions
|
| 25 |
+
- [Batuhan Tosun](https://github.com/batuhanntosun)
|
| 26 |
+
- [Bilal Kabas](https://github.com/bilalkabas)
|
images/app.gif
ADDED
|