Visualkeras is a Python package to help visualize Keras (either standalone or included in TensorFlow) neural network architectures. It allows easy styling to fit most needs. This module supports layered style architecture generation which is great for CNNs (Convolutional Neural Networks), and a graph style architecture, which works great for most models including plain feed-forward networks.
MIT License
582
stars
67
forks
source link
[REQUEST] ConvLSTM2D model visualization issue #38
Hi,
I was trying to use visualkeras to visualize my model architecture that looks like that following:
It gave me an error that said
TypeError: 'int' object is not iterable
so I had to fork the entire repo and make changes to visualkeras/layered.py so that I have
instead of
It seems like someone ran into a similar issue pretty recently -- may I ask why such changes were made to how variable z is defined?