Skip to content

Commit

Permalink
fix typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjj committed Sep 23, 2022
1 parent e76aa77 commit 03abcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nn_test.py
Expand Up @@ -227,7 +227,7 @@ def fwd():
a = jnp.array(1., 'float32')

def f(hx, _):
hx = jax.nn.relu(hx + a)
hx = sigmoid(hx + a)
return hx, None

hx = jnp.array(0., 'float32')
Expand Down

0 comments on commit 03abcc7

Please sign in to comment.