Add segment apis to paddle.incubate #35759
Merged
ZHUI merged 4 commits intoPaddlePaddle:developfrom Sep 16, 2021
Merged
Conversation
|
Thanks for your contribution! |
ZHUI
commented
Sep 15, 2021
|
|
||
| This operator calculate the maximum elements of input `data` which with | ||
| the same index in `segment_ids`. | ||
| It computes a tensor such that $out_i = \\min_{j} data_{j}$ |
TCChenlong
approved these changes
Sep 16, 2021
XiaoguangHu01
approved these changes
Sep 16, 2021
| # limitations under the License. | ||
|
|
||
| __all__ = [ | ||
| 'segment_sum', |
Contributor
There was a problem hiding this comment.
这里不用加到__all__列表,这个列表会用来统计公开API,只需要在目标位置加一次就行。
AnnaTrainingG
pushed a commit
to AnnaTrainingG/Paddle
that referenced
this pull request
Sep 29, 2021
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
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.
PR types
New features
PR changes
APIs
Describe
Add segment apis to paddle.incubate
Segment APIs provide operations (sum, mean, max, min) on certain segment part. Following image demonstrates the process of segment mean. The
segment_idsdivides thedatainto 4 parts, andsegment_meancalculates the mean of each part.