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
test_nn_relu_forward_1() and test_nn_relu_backward_1() both pass non-negative input to ReLU layer. This does not allow to test how layer works for negative inputs.
Inputs get generated as x = get_tensor(*shape) and get_tensor() function samples data uniformly from [0; 5[ interval:
test_nn_relu_forward_1()
andtest_nn_relu_backward_1()
both pass non-negative input to ReLU layer. This does not allow to test how layer works for negative inputs.Inputs get generated as
x = get_tensor(*shape)
andget_tensor()
function samples data uniformly from [0; 5[ interval:The text was updated successfully, but these errors were encountered: