-
Notifications
You must be signed in to change notification settings - Fork 361
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
If there is many inputs, how to write input? #59
Comments
I also have the same needs. Is it solved? |
Is there anybody who can hlep use with this issue? |
Same question, |
Hey guys, I may solve this problem by input a composed tensor and split it into several inputs before the forward process begin. |
What if we need two inputs with different shape? For example, if our inputs are [1, 3, 224, 224] and [1, 3, 112, 112]? |
Just input |
Thanks for your work.I know the normal usage is
tw.draw_model(model,[1,3,224,224])
.However,If the model has many inputs,what is the right style? I have triedtw.draw_model(model,([input1],[input2]))
andtw.draw_model(model,[[input1],[input2]])
,no one is right.can tw.draw_model only draw models for only one input? Or There is something wrong in my using?Sincerely for your reply.
The text was updated successfully, but these errors were encountered: