Update nn.test
This commit is contained in:
parent
f85b9670b2
commit
c1c48bb693
|
@ -48,7 +48,7 @@ def single_pass():
|
|||
# Small test to see if autograd works.
|
||||
def test():
|
||||
# Input tensors.
|
||||
x, y, z = tensor.Tensor(-2), tensor.Tensor(5), tensor.Tensor(-4)
|
||||
x, y, z = tensor.Tensor(np.array([[1, 2, 3]])), tensor.Tensor(np.array([[2, 3, 4]])), tensor.Tensor(np.array([[1], [2], [3]]))
|
||||
|
||||
# Forward pass.
|
||||
q = x.add(y)
|
||||
|
|
Loading…
Reference in a new issue