You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
Description
Include in the mxnet.numpy interface functions from the numpy package
numpy.sort(a, axis =1, kind=None , order=None ): This is a package function
numpy.ndarray.sort(axis=-1, kind=None , order=None): This is an instance method
numpy.argsort(a, axis=-1 , kind=None, order=None): This is a package function
The idea is to use them within a autograd.record() context and being able to compute the gradient of functions that use them.
References
https://docs.scipy.org/doc/numpy/reference/generated/numpy.sort.html#numpy.sort
Thank you very much
The text was updated successfully, but these errors were encountered: