Code Monkey home page Code Monkey logo

gradcam_pytorch's Introduction

GradCAM PyTorch

Python version support PyTorch version support

⭐ Star us on GitHub — it helps!!

PyTorch implementation for Grad-CAM: Visual Explanations from Deep Networks via Gradient-based Localization

2

Install

You will need a machine with a GPU and CUDA installed.
Then, you prepare runtime environment:

pip install -r requirements.txt

Use

CUDA_VISIBLE_DEVICES=0 python main.py --model_path=resnet50 --img_path=examples/catdog.png --select_t_layer=False

Arguments:

  • model_path - Choose a pretrained model in torchvision.models or saved model (.pt)
    • Examples of available list: ['alexnet', 'vgg19', 'resnet50', 'densenet169', 'mobilenet_v2' ,'wide_resnet50_2', ...]
  • img_path - Image Path
  • select_t_layer - Choose a target layer manually?
    • If True, you can select a layer and get GradCAM for the layer.
    • Elif False, you can get GradCAM automatically.

Guide for selecting a target layer manually

If you want to select a target layer manually, you run the following code:

CUDA_VISIBLE_DEVICES=0 python main.py --model_path=resnet50 --img_path=examples/catdog.png --select_t_layer=True

And then, you can get system print such as the following figure (left).
Suppose that you select(type) the features module (number 0) like as the figure (right).

2

Because you select the module, you get system print one more and should select a target layer in the module as described in below figure.
Once typing the 'number' or 'name' of a target class, you can get GradCAM result.

2

How to use your customized model

If you want to use a customized model that has a data type 'OrderedDict', you shoud type a code that loads model object.

Search 'load model' function in utils.py and type a code such as:

from yourNetwork import yourNetwork())
model=yourNetwork()

Understanding GradCAM

✅ Check my blog!! GradCAM in da2so

gradcam_pytorch's People

Contributors

da2so avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.