Skip to content

Commit

Permalink
reduced the maximum network depth for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Oskar Taubert committed Apr 19, 2024
1 parent f5fbd0b commit 66b2d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_surrogate.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def test_mnist_static(mpi_tmp_path):
num_generations = 3 # Number of generations
pop_size = 2 * MPI.COMM_WORLD.size # Breeding population size
limits = {
"conv_layers": (2, 10),
"conv_layers": (2, 3),
"activation": ("relu", "sigmoid", "tanh"),
"lr": (0.01, 0.0001),
} # Define search space.
Expand Down Expand Up @@ -350,7 +350,7 @@ def test_mnist_dynamic(mpi_tmp_path):
num_generations = 3 # Number of generations
pop_size = 2 * MPI.COMM_WORLD.size # Breeding population size
limits = {
"conv_layers": (2, 10),
"conv_layers": (2, 3),
"activation": ("relu", "sigmoid", "tanh"),
"lr": (0.01, 0.0001),
} # Define search space.
Expand Down

0 comments on commit 66b2d3f

Please sign in to comment.