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
Is your feature request related to a problem? Please describe.
I found that matx::var do not support the ddof argument like NumPy var. This parameter determines how to do the final division step.
ddof is 0 by default in NumPy, whereas in MatX it is currently fixed at ddof=1. Is it possible to support having the user pass in a custom ddof parameter? A similar feature is implemented by PyTorch, in their var function, where the equivalent argument is correction.
Describe the solution you'd like
I want a var function which looks like
Is your feature request related to a problem? Please describe.
I found that
matx::var
do not support theddof
argument like NumPyvar
. This parameter determines how to do the final division step.ddof
is0
by default in NumPy, whereas in MatX it is currently fixed atddof=1
. Is it possible to support having the user pass in a customddof
parameter? A similar feature is implemented by PyTorch, in theirvar
function, where the equivalent argument iscorrection
.Describe the solution you'd like
I want a
var
function which looks likeThe text was updated successfully, but these errors were encountered: