diff --git a/experiments/daic/tuning/generators/mnist.sh b/experiments/daic/tuning/generators/mnist.sh
index 6ee3e520aa2a2d20c9f49f71a9a6c30d1beae55d..370e43cc9a555b23cc4cd9964ecf8fb615aef48f 100644
--- a/experiments/daic/tuning/generators/mnist.sh
+++ b/experiments/daic/tuning/generators/mnist.sh
@@ -5,7 +5,7 @@
 #SBATCH --ntasks=30
 #SBATCH --cpus-per-task=10
 #SBATCH --partition=general
-#SBATCH --mem-per-cpu=4GB
+#SBATCH --mem-per-cpu=6GB
 #SBATCH --mail-type=END     # Set mail type to 'END' to receive a mail when the job finishes. 
 
 module use /opt/insy/modulefiles          # Use DAIC INSY software collection
@@ -13,4 +13,4 @@ module load openmpi
 
 source experiments/slurm_header.sh
 
-srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results mpi grid_search threaded n_individuals=10 > experiments/logs/grid_search_mnist.log
+srun julia --project=experiments --threads $SLURM_CPUS_PER_TASK experiments/run_experiments.jl -- data=mnist output_path=results mpi grid_search threaded n_individuals=10 n_each=10 > experiments/logs/grid_search_mnist.log
diff --git a/experiments/post_processing/results.jl b/experiments/post_processing/results.jl
index 3f35a6491f98c2c8dc38ad4f673c36525057fa88..f785b8cca7da733dc4164de0f9cd2bef845ebf03 100644
--- a/experiments/post_processing/results.jl
+++ b/experiments/post_processing/results.jl
@@ -15,7 +15,7 @@ function summarise_outcome(
     df =
         groupby(bmk(), [:dataname, :generator, :model, :variable]) |>
         x ->
-            combine(x, :value => mean => :mean, :value => std => :std) |>
+            combine(x, :value => mean => :mean, :value => std => :std_wg) |>
             x -> subset(x, :variable => ByRow(x -> x ∈ measure))
     if !isnothing(model)
         df = subset(df, :model => ByRow(x -> x ∈ model))