Created
April 16, 2019 11:15
-
-
Save saurabhpal97/158988f112e2e3b6067d25c5f6499ef3 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
#importing the required modules | |
from vis.visualization import visualize_activation | |
from vis.utils import utils | |
from keras import activations | |
from keras import applications | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
plt.rcParams['figure.figsize'] = (18,6) | |
#creating a VGG16 model using fully connected layers also because then we can | |
#visualize the patterns for individual category | |
from keras.applications import VGG16 | |
model = VGG16(weights='imagenet',include_top=True) | |
#finding out the layer index using layer name | |
#the find_layer_idx function accepts the model and name of layer as parameters and return the index of respective layer | |
layer_idx = utils.find_layer_idx(model,'predictions') | |
#changing the activation of the layer to linear | |
model.layers[layer_idx].activation = activations.linear | |
#applying modifications to the model | |
model = utils.apply_modifications(model) | |
#Indian elephant | |
img3 = visualize_activation(model,layer_idx,filter_indices=385,max_iter=5000,verbose=True) | |
plt.imshow(img3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment