keras-vis icon indicating copy to clipboard operation
keras-vis copied to clipboard

Neural network visualization toolkit for keras

Results 100 keras-vis issues
Sort by recently updated
recently updated
newest added

- [ ] Check that you are up-to-date with the master branch of keras-vis. You can update with: pip install git+git://github.com/raghakot/keras-vis.git --upgrade --no-deps - [ ] If running on TensorFlow,...

Version 0.5.0 also introduces `keras.backend.identity` via [this PR](https://github.com/raghakot/keras-vis/pull/120) But this isn't introduced in Keras until [version 2.0.4](https://github.com/keras-team/keras/releases/tag/2.0.4). So the current `install_requires=['keras>=2.0', 'six', 'scikit-image', 'matplotlib', 'h5py']` needs to be updated to...

I have an issue with visualizing my conv layers in the following model architecture, because keras-vis seems not to be able to handle model in models architecture. I want to...

not sure why but the combination of guided backprop + filter_indices=None (all filters) + linear final activation gives me zero gradients for VGG16. you can see this in the demo...

My CNN architecture is similar with the following figure. ![multi_input](https://cloud.githubusercontent.com/assets/2526276/26713536/c65d2f78-479f-11e7-8a0f-e248cd069fe1.png)

enhancement

https://arxiv.org/pdf/1512.02017v3.pdf (section 5.2)

ready

``` from keras.applications import VGG16 from vis.utils import utils from keras import activations from vis.visualization import visualize_activation # from vis.backend import sel model = VGG16(weights="imagenet",include_top=False) layer_idx = utils.find_layer_idx(model, 'block5_conv3') img...

Hello, firstly thank you for providing such an awesome package. I got a problem. I've fine-tuned a ResNet50 for a 5-classes problem. This is my model ![20181205163126](https://user-images.githubusercontent.com/25195733/49500286-4ecdb400-f8ab-11e8-848e-beaacbc606bc.png) But when the...

If we could reload the MNIST model trained in the example and draw all the saliency charts for for **one digit** (e.g. '7') using **filter index from zero to ten**,...

- [ ] Check that you are up-to-date with the master branch of keras-vis. You can update with: pip install git+git://github.com/raghakot/keras-vis.git --upgrade --no-deps - [ ] If running on TensorFlow,...