Last active
August 16, 2019 06:37
-
-
Save andrewschreiber/c34a62161500daef4434bb1f71937661 to your computer and use it in GitHub Desktop.
This file contains 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
# Create a saliency map for each data point | |
for i, image in enumerate(data): | |
# Forward pass on image | |
# Note: the activations are saved on each layer | |
output = image | |
for l in range(len(network.layers)): | |
output = network.layers[l].forward(output) | |
# Backprop to get gradient | |
label_one_hot = labels[i] | |
dy = np.array(label_one_hot) | |
for l in range(len(network.layers)-1, -1, -1): | |
dout = network.layers[l].backward(dy) | |
dy = dout | |
raw_saliency_map = dout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment