You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 18, 2020. It is now read-only.
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")
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: