From a765f97f269c9f2cd1b0e1b89e183e6f9526145f Mon Sep 17 00:00:00 2001
From: Pat Alt <55311242+pat-alt@users.noreply.github.com>
Date: Mon, 18 Sep 2023 21:47:23 +0200
Subject: [PATCH] typo

---
 experiments/grid_search.jl | 4 ++--
 experiments/mnist.jl       | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/experiments/grid_search.jl b/experiments/grid_search.jl
index bfb20a3f..1bfda483 100644
--- a/experiments/grid_search.jl
+++ b/experiments/grid_search.jl
@@ -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
 
diff --git a/experiments/mnist.jl b/experiments/mnist.jl
index f7fb9622..34aae4c3 100644
--- a/experiments/mnist.jl
+++ b/experiments/mnist.jl
@@ -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
-- 
GitLab