Deep Neural Network inspection: view weights, gradients and activations
Project description
Deep Neural Network viewer
A dashboard to inspect deep neural network models, providing interactive view on the layer and unit weights and gradients, as well as activation maps.
Current version is targeted at the image classification. However, coming version will target more diverse tasks.
This project is for learning and teaching purpose, do not try to display a network with hundreds of layers.
Install
Install with PIP
$ pip install dnnviewer
Run dnnviewer
with one of the examples below, or with you own model (see below for capabilities and limitations)
Access the web application at http://127.0.0.1:8050
Running the program
Currently accepted input formats are Keras Sequential models written to file in Checkpoint format or HDF5. A series of checkpoints along training epochs is also accepted as exemplified below.
Some test models are provided in the GIT repository _dnnviewer-data_
to clone from Github or download a zip from the repository page, a full description of the models and their design is available in the repository readme.
$ git clone https://github.com/tonio73/dnnviewer-data.git
Test data is provided by Keras.
Selecting the model within the application`
Launch the application with command line --model-directories
that set a comma separated list of directory paths where the models are located
$ dnnviewer --model-directories dnnviewer-data/models,dnnviewer-data/models/FashionMNIST_checkpoints
Then select the network model and the corresponding test data (optional) on the user interface
Models containing the '{epoch}' tag are sequences over epochs. They are detected based on the pattern set by
command line option --sequence-pattern
whose default is {model}_{epoch}
Loading a single model
Keras models are loaded from Tensorflow Checkpoint or HDF5 format with option --model-keras <file>
CIFAR-10 Convolutional neural network (at the beginning of training)
$ dnnviewer --model-keras dnnviewer-data/models/CIFAR-10_CNN5-Reg.tf --test-dataset cifar-10
MNIST Convolutional neural network based on LeNet5
$ dnnviewer --model-keras dnnviewer-data/models/MNIST_LeNet60.h5 --test-dataset mnist
Loading several epochs of a model
Series of models along training epochs are loaded using the argument --sequence-keras <path>
and the pattern {model}_{epoch}
within the provided path. See below on how to generate these checkpoints.
Fashion MNIST convolutionnal network
$ dnnviewer --sequence-keras "dnnviewer-data/models/FashionMNIST_checkpoints/model1_{epoch}" --test-dataset fashion-mnist
Generating the models
From Tensorflow 2.0 Keras
Note: Only Sequential models are currently supported.
Save a single model
Use the save()
method of keras.models.Model class the output file format is either Tensorflow Checkpoint or HDF5 based on the extension.
model1.save('models/MNIST_LeNet60.h5')
Save models during training
The Keras standard callback tensorflow.keras.callbacks.ModelCheckpoint
is saving the model every epoch or a defined period of epochs:
from tensorflow import keras
from tensorflow.keras.callbacks import ModelCheckpoint
model1 = keras.models.Sequential()
#...
callbacks = [
ModelCheckpoint(
filepath='checkpoints_cnn-mnistfashion/model1_{epoch}',
save_best_only=False,
verbose=1)
]
hist1 = model1.fit(train_images, train_labels,
epochs=nEpochs, validation_split=0.2, batch_size=batch_size,
verbose=0, callbacks=callbacks)
Current capabilities
- Load Tensorflow Keras Sequential models and create a display of the network
- Targeted at image classification task (assume image as input, class as output)
- Display series of models over training epochs
- Interactive display and unit weights through connections within the network and histograms
- Supported layers
- Dense
- Convolution 2D
- Flatten
- Input
- Following layers are added as attributes to the previous or next layer
- Dropout, ActivityRegularization, SpatialDropout1D/2D/3D
- All pooling layers
- BatchNormalization
- Activation
- Unsupported layers
- Convolution 1D and 3D
- Transpose convolution 2D and 3D
- Reshape, Permute, RepeatVector, Lambda, Masking
- Recurrent layers (LSTM, GRU...)
- Embedding layers
- Merge layers
Developer documentation
See developer.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dnnviewer-0.1.0.tar.gz
.
File metadata
- Download URL: dnnviewer-0.1.0.tar.gz
- Upload date:
- Size: 29.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0.post20200528 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3891f9157a85b9fb500da2d422469849dcee6eda3a63d300075d6557cfd9690d |
|
MD5 | 7c9d6d69e25caa03752a1879b63fef67 |
|
BLAKE2b-256 | 62ec1cc1d0e9c85c1c2967a6a7f74754526e943be5d019d2893e3f6f2ed89210 |
File details
Details for the file dnnviewer-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: dnnviewer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 41.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0.post20200528 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9b45788c310e7b658720aae4f422628d24c8856c92384916de43ce69324ac0b |
|
MD5 | 30775b677b00663794d115d5b212d9ab |
|
BLAKE2b-256 | c88a071d125fe603bf5df41aa714d29a339bf4acdabd2618e47e77c15e59791f |