r""" Computes the arithmetic mean of a tensor along given dimensions. This function follows the api from :any:`numpy.mean` See: https://numpy.org/doc/stable/reference/generated/numpy.mean.html
(self, a, axis=None)
| 650 | raise NotImplementedError() |
| 651 | |
| 652 | def mean(self, a, axis=None): |
| 653 | r""" |
| 654 | Computes the arithmetic mean of a tensor along given dimensions. |
| 655 | |
| 656 | This function follows the api from :any:`numpy.mean` |
| 657 | |
| 658 | See: https://numpy.org/doc/stable/reference/generated/numpy.mean.html |
| 659 | """ |
| 660 | raise NotImplementedError() |
| 661 | |
| 662 | def median(self, a, axis=None): |
| 663 | r""" |
no outgoing calls