r""" Returns the indices of the minimum values of a tensor along given dimensions. This function follows the api from :any:`numpy.argmin` See: https://numpy.org/doc/stable/reference/generated/numpy.argmin.html
(self, a, axis=None)
| 640 | raise NotImplementedError() |
| 641 | |
| 642 | def argmin(self, a, axis=None): |
| 643 | r""" |
| 644 | Returns the indices of the minimum values of a tensor along given dimensions. |
| 645 | |
| 646 | This function follows the api from :any:`numpy.argmin` |
| 647 | |
| 648 | See: https://numpy.org/doc/stable/reference/generated/numpy.argmin.html |
| 649 | """ |
| 650 | raise NotImplementedError() |
| 651 | |
| 652 | def mean(self, a, axis=None): |
| 653 | r""" |
no outgoing calls