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.
NDArray.randn function signature def rand (*shape, **kwargs):
is incorrect and inconsistent with rest of the signatures in Random Number Generator NDArray API
a. Rest of the parameters - loc, scale, shape, dtype, ctx, out need to be included
b. *shape has to be replaced by shape
c. Why is another level of abstraction added by putting everything in **kwargs and then popping it up. If that's required, why not for others?
The text was updated successfully, but these errors were encountered:
Description
NDArray.randn function signature
def rand (*shape, **kwargs):
is incorrect and inconsistent with rest of the signatures in Random Number Generator NDArray API
a. Rest of the parameters -
loc
,scale
,shape
,dtype
,ctx
,out
need to be includedb.
*shape
has to be replaced byshape
c. Why is another level of abstraction added by putting everything in
**kwargs
and then popping it up. If that's required, why not for others?The text was updated successfully, but these errors were encountered: