From c5add9b801eece9741a58260fdfbc4c70e578644 Mon Sep 17 00:00:00 2001 From: Matthias Humt <22399283+hummat@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:39:09 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09cdc43..b058a60 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The methods should work with all models from the [torchvision](https://github.co * DenseNet variants * Inception/GoogLeNet* -*In order for *Guided Backpropagation* and *Grad-CAM* to work properly with the *Inception* and *GoogLeNet* models, they need to by modified slightly, such that all *ReLUs* are modules of the model rather than function calls. +\*In order for *Guided Backpropagation* and *Grad-CAM* to work properly with the *Inception* and *GoogLeNet* models, they need to by modified slightly, such that all *ReLUs* are modules of the model rather than function calls. ```python # This class can be found at the very end of inception.py and googlenet.py respectively.