mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
fix typo in argmax docstring (#55239)
Summary: argmax docstring previously said that it returns indexes of the first 'minimal' value, fixed typo in that line to 'maximal' Pull Request resolved: https://github.com/pytorch/pytorch/pull/55239 Reviewed By: albanD Differential Revision: D27641562 Pulled By: mrshenli fbshipit-source-id: f8b5c579400088b5210c83a05da6c4c106fbf95d
This commit is contained in:
parent
c91cf1e7a9
commit
80d04f910c
1 changed files with 1 additions and 1 deletions
|
|
@ -5206,7 +5206,7 @@ Returns the indices of the maximum value of all elements in the :attr:`input` te
|
|||
This is the second value returned by :meth:`torch.max`. See its
|
||||
documentation for the exact semantics of this method.
|
||||
|
||||
.. note:: If there are multiple minimal values then the indices of the first minimal value are returned.
|
||||
.. note:: If there are multiple maximal values then the indices of the first maximal value are returned.
|
||||
|
||||
Args:
|
||||
{input}
|
||||
|
|
|
|||
Loading…
Reference in a new issue