-
Now i'm learning from a paper,but it's code is encapsulated in timm,named interfuser.
but i want to figure out the forward procession of this model,is there exist any command or something help to print the forward procession of a model like
This way I can figure out which features are handed to which module,and if there are any additional operation like concatenate along the way. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @xanhug How about using torchsummary? This package is able to sequentially lists the hidden layer name with the output shape along with the forward process.
Thank you. hankyul |
Beta Was this translation helpful? Give feedback.
Hi @xanhug
How about using torchsummary? This package is able to sequentially lists the hidden layer name with the output shape along with the forward process.