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

typo

parent bc31a36c
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
......@@ -47,8 +47,8 @@ function grid_search(
if !(is_multi_processed(PLZ) && MPI.Comm_rank(PLZ.comm) != 0)
Serialization.serialize(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_")).jls"), outcomes)
Serialization.serialize(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_"))_best.jls"), best_outcome(outcomes))
Serialization.serialise(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_"))_best_eccco.jls"), best_eccco(outcomes))
Serialization.serialise(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_"))_best_eccco_Δ.jls"), best_eccco_Δ(outcomes))
Serialization.serialize(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_"))_best_eccco.jls"), best_eccco(outcomes))
Serialization.serialize(joinpath(grid_search_path, "$(replace(lowercase(dataname), " " => "_"))_best_eccco_Δ.jls"), best_eccco_Δ(outcomes))
end
end
......
......@@ -38,10 +38,10 @@ params = (
epochs=10,
nsamples=50,
nmin=1,
niter_eccco=10,
niter_eccco=500,
Λ=[0.1, 0.25, 0.25],
Λ_Δ=[0.1, 0.1, 2.5],
opt=Flux.Optimise.Descent(0.1)
opt=Flux.Optimise.Adam(0.1)
)
if !GRID_SEARCH
......
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