This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generate GradCAM for COVID-Net model: https://github.com/lindawangg/COVID-Net | |
By: Hoa Nguyen | |
Last updated: May 23, 2020 | |
""" | |
# Dependencies | |
import numpy as np | |
import tensorflow as tf | |
import os, argparse | |
import cv2 |