diff --git a/experiments/daic/testing/cali_100_8.sh b/experiments/daic/testing/cali_100_8.sh
index 4f7ea461246b279093a59e7cf4b4754ba7251014..7336d0d30925dad7d915ba210dc6ea96429f1be1 100644
--- a/experiments/daic/testing/cali_100_8.sh
+++ b/experiments/daic/testing/cali_100_8.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 #SBATCH --job-name="Grid-search California Housing (ECCCo)"
-#SBATCH --time=01:00:00
+#SBATCH --time=01:10:00
 #SBATCH --ntasks=10
 #SBATCH --cpus-per-task=10
 #SBATCH --partition=general
diff --git a/experiments/setup_env.jl b/experiments/setup_env.jl
index 8c5a52d12605d3af43aac3137bebd258e8d71dde..8cf0de5508f44d5f918cb68e8a67a6120174e936 100644
--- a/experiments/setup_env.jl
+++ b/experiments/setup_env.jl
@@ -202,9 +202,11 @@ DEFAULT_GENERATOR_TUNING_LARGE = (
     reg_strength=[0.0, 0.1,],
     opt = [
         Descent(0.01), 
+        Descent(0.05),
         Optimiser(ClipValue(0.01), Descent(0.01)),
+        Optimiser(ClipValue(0.05), Descent(0.05)),
     ],
-    decay = [(0.0, 1), (0.01, 1)],
+    decay = [(0.0, 1), (0.01, 1), (0.1, 1)],
 )
 
 "Boolean flag to check if model tuning was specified."