-
How do I hide recursive from repeating or showing. I tried torchinfo.summary(
model,
input_data=data,
row_settings={"no_recursive"},
verbose=1
) But that failed with |
Beta Was this translation helpful? Give feedback.
Answered by
TylerYep
May 2, 2023
Replies: 1 comment
-
The setting is called |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
princyok
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The setting is called
"hide_recursive_layers"
. I recommend importingRowSettings
and usingRowSettings.HIDE_RECURSIVE_LAYERS
to be more clear. Hope this helps!