From 3332929201d4385979077cdcd9a43ce715375785 Mon Sep 17 00:00:00 2001
From: Pat Alt <55311242+pat-alt@users.noreply.github.com>
Date: Wed, 4 Oct 2023 13:12:53 +0200
Subject: [PATCH] bleh

---
 experiments/daic/testing/cali_16each.sh | 15 +++++++++++++++
 experiments/daic/testing/cali_4each.sh  | 15 +++++++++++++++
 experiments/setup_env.jl                |  2 +-
 3 files changed, 31 insertions(+), 1 deletion(-)
 create mode 100644 experiments/daic/testing/cali_16each.sh
 create mode 100644 experiments/daic/testing/cali_4each.sh

diff --git a/experiments/daic/testing/cali_16each.sh b/experiments/daic/testing/cali_16each.sh
new file mode 100644
index 00000000..8db0cba7
--- /dev/null
+++ b/experiments/daic/testing/cali_16each.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+#SBATCH --job-name="Grid-search California Housing (ECCCo)"
+#SBATCH --time=01:00:00
+#SBATCH --ntasks=100
+#SBATCH --cpus-per-task=1
+#SBATCH --partition=general
+#SBATCH --mem-per-cpu=4GB
+#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
+module load openmpi
+
+srun julia --project=experiments experiments/run_experiments.jl -- data=california_housing output_path=results mpi grid_search n_individuals=10 n_each=16 > experiments/grid_search_california_housing.log
+
diff --git a/experiments/daic/testing/cali_4each.sh b/experiments/daic/testing/cali_4each.sh
new file mode 100644
index 00000000..5d9c7470
--- /dev/null
+++ b/experiments/daic/testing/cali_4each.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+#SBATCH --job-name="Grid-search California Housing (ECCCo)"
+#SBATCH --time=01:00:00
+#SBATCH --ntasks=100
+#SBATCH --cpus-per-task=1
+#SBATCH --partition=general
+#SBATCH --mem-per-cpu=4GB
+#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
+module load openmpi
+
+srun julia --project=experiments experiments/run_experiments.jl -- data=california_housing output_path=results mpi grid_search n_individuals=10 n_each=4 > experiments/grid_search_california_housing.log
+
diff --git a/experiments/setup_env.jl b/experiments/setup_env.jl
index 1f92ef11..608f6dc0 100644
--- a/experiments/setup_env.jl
+++ b/experiments/setup_env.jl
@@ -196,7 +196,7 @@ DEFAULT_GENERATOR_TUNING = (
 "Generator tuning parameters for large datasets."
 DEFAULT_GENERATOR_TUNING_LARGE = (
     Λ = [[0.1, 0.1, 0.1], [0.1, 0.1, 0.2], [0.2, 0.2, 0.2]],
-    reg_strength = [0.0, 0.1, 0.25,],
+    reg_strength = [0.0,],
     opt = [
         Descent(0.01), 
         Descent(0.05),
-- 
GitLab