Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Oct 21, 2024
1 parent 5ca9b49 commit 8a08d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_glm.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ def test_initialize_solver_param_length(
model.initialize_state(X, y, params)

@pytest.mark.parametrize(
"inv_link", [jnp.exp, lambda x: jnp.exp(x), jax.nn.softplus, jax.nn.sigmoid]
"inv_link", [jnp.exp, lambda x: jnp.exp(x), jax.nn.softplus, jax.nn.relu]
)
def test_high_firing_rate_initialization(
self, inv_link, example_X_y_high_firing_rates
Expand Down Expand Up @@ -1932,7 +1932,7 @@ def test_init_observation_type(
)

@pytest.mark.parametrize(
"inv_link", [jnp.exp, lambda x: jnp.exp(x), jax.nn.softplus, jax.nn.sigmoid]
"inv_link", [jnp.exp, lambda x: jnp.exp(x), jax.nn.softplus, jax.nn.relu]
)
def test_high_firing_rate_initialization(
self, inv_link, example_X_y_high_firing_rates
Expand Down

0 comments on commit 8a08d3a

Please sign in to comment.