Skip to content
Snippets Groups Projects
Commit 258c80e0 authored by pat-alt's avatar pat-alt
Browse files

mnist daic

parent 7f6e9525
No related branches found
No related tags found
1 merge request!8985 overshooting
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#SBATCH --ntasks=30 #SBATCH --ntasks=30
#SBATCH --cpus-per-task=10 #SBATCH --cpus-per-task=10
#SBATCH --partition=general #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. #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 use /opt/insy/modulefiles # Use DAIC INSY software collection
...@@ -13,4 +13,4 @@ module load openmpi ...@@ -13,4 +13,4 @@ module load openmpi
source experiments/slurm_header.sh 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
...@@ -15,7 +15,7 @@ function summarise_outcome( ...@@ -15,7 +15,7 @@ function summarise_outcome(
df = df =
groupby(bmk(), [:dataname, :generator, :model, :variable]) |> groupby(bmk(), [:dataname, :generator, :model, :variable]) |>
x -> 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)) x -> subset(x, :variable => ByRow(x -> x measure))
if !isnothing(model) if !isnothing(model)
df = subset(df, :model => ByRow(x -> x model)) df = subset(df, :model => ByRow(x -> x model))
......
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