r""" Finds unique elements of given tensor. This function follows the api from :any:`numpy.unique` See: https://numpy.org/doc/stable/reference/generated/numpy.unique.html
(self, a, return_inverse=False)
| 710 | raise NotImplementedError() |
| 711 | |
| 712 | def unique(self, a, return_inverse=False): |
| 713 | r""" |
| 714 | Finds unique elements of given tensor. |
| 715 | |
| 716 | This function follows the api from :any:`numpy.unique` |
| 717 | |
| 718 | See: https://numpy.org/doc/stable/reference/generated/numpy.unique.html |
| 719 | """ |
| 720 | raise NotImplementedError() |
| 721 | |
| 722 | def stack(self, arrays, axis=0): |
| 723 | r""" |
no outgoing calls