Skip to content
This repository has been archived by the owner on Oct 18, 2020. It is now read-only.

Can not able to plot Keras Model API #25

Open
krprashant94 opened this issue Aug 13, 2019 · 2 comments
Open

Can not able to plot Keras Model API #25

krprashant94 opened this issue Aug 13, 2019 · 2 comments

Comments

@krprashant94
Copy link

krprashant94 commented Aug 13, 2019

Keras Model API not supported with ValueError: ANN Visualizer: Layer not supported for visualizing
I think this arises due to Input layer
my code is

from keras.models import Model
from keras.layers import Input, Dense

a = Input(shape=(32,))
b = Dense(32)(a)
model = Model(inputs=a, outputs=b)
model.summary()

ann_viz(model, title="My first neural network")
@renatobellotti
Copy link

renatobellotti commented Aug 27, 2019

I'm getting the same error message. I'm using an InputLayer.

@VincentSch4rf
Copy link

I am running into this problem as well. Maybe this is due to the update to Tensorflow 2.0?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants