-
Notifications
You must be signed in to change notification settings - Fork 758
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
docs: add cummax/cummin docs #5903
Conversation
感谢你贡献飞桨文档,文档预览构建中,Docs-New 跑完后即可预览,预览链接:http://preview-pr-5903.paddle-docs-preview.paddlepaddle.org.cn/documentation/docs/zh/api/index_cn.html |
docs/api/paddle/Tensor_cn.rst
Outdated
cummax(x, axis=None, dtype='int64', name=None) | ||
::::::::: | ||
|
||
沿给定 axis 计算 Tensor x 的累计最大值。 | ||
|
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.
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.
@Patrick-Star125 看了下,这并不是写法的问题,而是因为pr冲突导致的显示不正确。
请解决一下冲突~
docs/api/paddle/Tensor_cn.rst
Outdated
cummin(x, axis=None, dtype='int64', name=None) | ||
::::::::: | ||
|
||
沿给定 axis 计算 Tensor x 的累计最小值。 | ||
|
||
返回:计算后的 Tensor 和对应索引 Indices。 |
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.
cummin(x, axis=None, dtype='int64', name=None) | |
::::::::: | |
沿给定 axis 计算 Tensor x 的累计最小值。 | |
返回:计算后的 Tensor 和对应索引 Indices。 | |
cummin(x, axis=None, dtype='int64', name=None) | |
::::::::: | |
沿给定 axis 计算 Tensor x 的累计最小值。 | |
返回:计算后的 Tensor 和对应索引 Indices。 |
docs/api/paddle/cummax_cn.rst
Outdated
|
||
沿给定 ``axis`` 计算 Tensor ``x`` 的累加最大值。 | ||
|
||
**注意**:结果的第一个元素和输入的第一个元素相同。 |
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.
**注意**:结果的第一个元素和输入的第一个元素相同。 | |
.. note:: | |
结果的第一个元素和输入的第一个元素相同。 |
docs/api/paddle/cummin_cn.rst
Outdated
|
||
沿给定 ``axis`` 计算 Tensor ``x`` 的累计最大值。 | ||
|
||
**注意**:结果的第一个元素和输入的第一个元素相同。 |
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.
**注意**:结果的第一个元素和输入的第一个元素相同。 | |
.. note:: | |
结果的第一个元素和输入的第一个元素相同。 |
格式已修改 |
@Patrick-Star125 请解决下冲突 |
Done |
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.
LGTM
added cummax/cummin docs to paddle docs repo.