Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] on graph_view, inout_as_tensor can not be set to False #82

Open
dudung opened this issue Nov 24, 2024 · 1 comment
Open

[BUG] on graph_view, inout_as_tensor can not be set to False #82

dudung opened this issue Nov 24, 2024 · 1 comment

Comments

@dudung
Copy link

dudung commented Nov 24, 2024

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.

Screenshots
image

Environment

Additional context
This bug is found when discussing other bug in #79.

@Soontosh
Copy link
Collaborator

Thanks for the report. Will take a look!

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

No branches or pull requests

2 participants