/vizdnn

Deep Neural Network Vizualizer

Primary LanguagePythonMIT LicenseMIT

Vizdnn

Interpretable Deep Neural network is the next phase of understanding the working of neural network. This library suffices the need to vizualize neural network layer with simple python pip package.

Pip Install

pip install vizdnn

Use

from vizdnn import vizdnn 
import keras

visualize_neural_network = vizdnn(keras.applications.resnet.ResNet50() , "network_layer_name" , "test_image_name.jpg")

vis_layer = visualize_neural_network.get_layer()
visualize_neural_network.viz_feature_map(vis_layer)

Sample Viz

  • Sample test image

test-image-name.jpg


  • Vizualization from Resnet50 conv1_bn Layer.

Screenshot-from-2019-10-22-18-43-48.png


  • Vizualization from VGG16 block2_conv1 Layer.

Screenshot-from-2019-10-22-18-46-14.png