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
jt.nn.conv_transpose2d
The documentation description for jt.nn.conv_transpose2d has the function nn.conv_transpose instead of conv_transpose2d in the Code Examples section, which may cause user inconvenience. https://cg.cs.tsinghua.edu.cn/jittor/assets/docs/jittor.nn.html#jittor.nn.conv_transpose2d
import jittor as jt from jittor import nn x = jt.ones(2,3,4,5) w = jt.ones(3,6,3,3) nn.conv_transpose(x,w).shape
Should use nn.conv_transpose2 instead of nn.conv_transpose
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The documentation description for jt.nn.conv_transpose2d has the function nn.conv_transpose instead of conv_transpose2d in the Code Examples section, which may cause user inconvenience.
https://cg.cs.tsinghua.edu.cn/jittor/assets/docs/jittor.nn.html#jittor.nn.conv_transpose2d
Full Log
Minimal Reproduce
Expected behavior
Should use nn.conv_transpose2 instead of nn.conv_transpose
The text was updated successfully, but these errors were encountered: