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
- Vizualization from Resnet50 conv1_bn Layer.
- Vizualization from VGG16 block2_conv1 Layer.