We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, first of all thank you for your amazing work.
Describe the bug I have a model with the function forward take x and y in parameters.
... def forward(x, y): pred = model(x,y) ...
What part of the code should I rewrite to take this modification into account ?
The text was updated successfully, but these errors were encountered:
Try using explicit kwargs: summary(model, x=x, y=y)
summary(model, x=x, y=y)
Or using a tuple for input data: summary(model, input_data=(x,y)
summary(model, input_data=(x,y)
Sorry, something went wrong.
No branches or pull requests
Hello, first of all thank you for your amazing work.
Describe the bug
I have a model with the function forward take x and y in parameters.
What part of the code should I rewrite to take this modification into account ?
The text was updated successfully, but these errors were encountered: