Skip to content
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

API documentation bug in jt.nn.conv_transpose2d #532

Open
x0w3n opened this issue May 12, 2024 · 0 comments
Open

API documentation bug in jt.nn.conv_transpose2d #532

x0w3n opened this issue May 12, 2024 · 0 comments

Comments

@x0w3n
Copy link

x0w3n commented May 12, 2024

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

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

Minimal Reproduce

Expected behavior

Should use nn.conv_transpose2 instead of nn.conv_transpose

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant