Skip to content
Snippets Groups Projects
Commit 85231418 authored by Pat Alt's avatar Pat Alt
Browse files

added optimiser to tuning grid

parent 737b50e7
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
......@@ -41,6 +41,7 @@ params = (
niter_eccco=10,
Λ=[0.1, 0.25, 0.25],
Λ_Δ=[0.1, 0.1, 2.5],
opt=Flux.Optimise.Descent(0.1)
)
if !GRID_SEARCH
......
......@@ -41,6 +41,7 @@ params = (
niter_eccco=10,
Λ=[0.1, 0.25, 0.25],
Λ_Δ=[0.1, 0.1, 2.5],
opt=Flux.Optimise.Descent(0.1)
)
if !GRID_SEARCH
......
......@@ -154,6 +154,11 @@ DEFAULT_GENERATOR_TUNING = (
[0.1, 0.5, 0.5],
],
reg_strength=[0.0, 0.1, 0.5],
opt=[
Flux.Optimise.Descent(0.1),
Flux.Optimise.Descent(0.05),
Flux.Optimise.Descent(0.01),
],
)
"Boolean flag to check if model tuning was specified."
......
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