-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
max pool Layer with mask #4891
Merged
+357
−29
Merged
max pool Layer with mask #4891
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
720274d
add max-pool-with-mask python interface
NHZlX 9621213
add max-pool-with-mask c++ impl
NHZlX afa6902
add cuda and cpu pool_forward_with_mask impl
NHZlX ff20a11
add layerGrad test and maskoutput test
NHZlX c876dfa
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 8106f41
add the max pool with mask layer
NHZlX a54565e
delete mask pool interface from poolprojection
NHZlX ba2e5de
pull develop and fix conflict
NHZlX 2ef1867
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 921f723
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 3428a52
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 9e894f6
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 4ebb05c
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX b29cbd4
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 69147da
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 471573e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX 5aa3e76
fix bug with default parameter
NHZlX 0b9c4cd
fix comments
NHZlX e19b931
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
NHZlX File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
add max-pool-with-mask python interface
- v3.0.0-rc1
- v3.0.0-rc0
- v3.0.0-beta2
- v3.0.0-beta1
- v3.0.0-beta0
- v2.6.2
- v2.6.1
- v2.6.0
- v2.6.0-bak0
- v2.5.2
- v2.5.1
- v2.5.0
- v2.5.0-rc1
- v2.5.0-rc0
- v2.4.2
- v2.4.1
- v2.4.0
- v2.4.0-rc0
- v2.3.2
- v2.3.1
- v2.3.0
- v2.3.0-rc0
- v2.2.2
- v2.2.1
- v2.2.0
- v2.2.0-rc0
- v2.2.0-bak0
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.1.0-rc0
- v2.0.2
- v2.0.1
- v2.0.0
- v2.0.0-rc1
- v2.0.0-rc0
- v2.0.0-beta0
- v2.0.0-alpha0
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.6.0-rc0
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0-rc0
- v0.15.0
- v0.15.0-rc0
- v0.14.0
- v0.13.0
- v0.12.0
- v0.11.1a2
- v0.11.1a1
- v0.11.0
- lite-v0.1
commit 720274da53aa95aed1d71e21469a6bacc00f4559
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add
,
beforeMaxWithMaskPooling
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done