-
Notifications
You must be signed in to change notification settings - Fork 316
fix jittor.nn.AdaptiveMaxPool3d
doc
#597
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
Open
luozhiya
wants to merge
116
commits into
Jittor:master
Choose a base branch
from
luozhiya:patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add complex matmul, inv, qr, eig, and svd
fix issue 531,530;update jt.nn.PixelShuffle/jt.histc
fix issue 525;update jt.nn.Reflection2d/Replication2d
fix issue 527,526;update jt.zeros/ones/full/randn/randint/random
fix issue 529;update contrib.argmax_pool()
fix issue 528;update conv_transpose
Update mnist.py
polish rocm support
fix issue 521;update jt.nn.MaxUnpool2d/MaxUnpool3d
fix issue 522,520,519,516; update jt.Pool/Pool3d
fix issue 523;update jt.nn.Conv1d/Conv3d/conv2d/conv3d
Update ACL library and fix bugs in ACL integration
fix: fix for issue Jittor#544
…ty of concat of issue Jittor#459
fix: some function&class input illegal paramters
Fixed the BUG of ACL op memory
complement of test_aclop
Add Complex Operators
fix load_parameter for Parameterlist issue Jittor#581
check input shape and scale factor's positiveness in jt.nn.Upsample
check input1 and input2 shape in jt.nn.Bilinear()
add attention mask
Add support for block diag function
Make forward hook modifiy the inputs and outputs
fix dim=3 error
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
问题
源码中有 https://cg.cs.tsinghua.edu.cn/jittor/assets/docs/_modules/jittor/pool.html#AdaptiveMaxPool3d ,但是没生成相应的文档。且存在重复的
AdaptiveMaxPool2d
, 文档导航栏如图:解决方法
修改文档生成模板,把重复的
AdaptiveMaxPool2d
改为AdaptiveMaxPool3d
Close #484