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
Describe the bug
Keyword argument inout_as_tensor on graph_view() can not be set to False
Minimal Code To Reproduce
import keras
from keras import Input, Model
from keras.layers import Dense
import visualkeras
inputs = Input(shape=(6,))
outputs = Dense(2, activation='tanh')(inputs)
model = Model(inputs=inputs, outputs=outputs)
visualkeras.graph_view(model, inout_as_tensor=False)
Expected behavior
Input and output layers should be displayed as nodes instead of boxes.
Describe the bug
Keyword argument
inout_as_tensor
ongraph_view()
can not be set toFalse
Minimal Code To Reproduce
Expected behavior
Input and output layers should be displayed as nodes instead of boxes.
Screenshots
Environment
Additional context
This bug is found when discussing other bug in #79.
The text was updated successfully, but these errors were encountered: