ndarray
autograd
loss
mxnet.ndarray.
logical_not
Returns the result of logical NOT (!) function
Example
logical_not([-2., 0., 1.]) = [0., 1., 0.]
data (NDArray) – The input array.
out (NDArray, optional) – The output NDArray to hold the result.
out – The output of this function.
NDArray or list of NDArrays