Skip to content
Snippets Groups Projects
Commit 416b6947 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix

parent d0cb05e2
No related branches found
No related tags found
No related merge requests found
......@@ -24,11 +24,11 @@ grid = []
def hyperparrameters_grid():
for learning_rate in [0.001]:
for convolutional_activation in ["relu", "tanh"]:
for convolutional_filters in [64, 128]:
for convolutional_activation in ["tanh"]:
for convolutional_filters in [64, 128, 256]:
for flanking_averages in [True]:
for convolutional_kernel_size in [8, 9]:
for l1 in [0.0, 0.000001]:
for convolutional_kernel_size in [4, 6, 8, 10, 12]:
for l1 in [0.0]: #0.000001
for s in [[], [8]]:
for d in [0.5]:
new = deepcopy(base_hyperparameters)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment