r""" Returns the indices of the maximum values of a tensor along given dimensions. This function follows the api from :any:`numpy.argmax` See: https://numpy.org/doc/stable/reference/generated/numpy.argmax.html
(self, a, axis=None)
| 630 | raise NotImplementedError() |
| 631 | |
| 632 | def argmax(self, a, axis=None): |
| 633 | r""" |
| 634 | Returns the indices of the maximum values of a tensor along given dimensions. |
| 635 | |
| 636 | This function follows the api from :any:`numpy.argmax` |
| 637 | |
| 638 | See: https://numpy.org/doc/stable/reference/generated/numpy.argmax.html |
| 639 | """ |
| 640 | raise NotImplementedError() |
| 641 | |
| 642 | def argmin(self, a, axis=None): |
| 643 | r""" |
no outgoing calls