Skip to content
Snippets Groups Projects
Commit 45289225 authored by Pat Alt's avatar Pat Alt
Browse files

cut down further

parent d40c9d50
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
#!/bin/bash
#SBATCH --job-name="Grid-search Circles (ECCCo)"
#SBATCH --time=6:00:00
#SBATCH --ntasks=48
#SBATCH --cpus-per-task=1
#SBATCH --partition=compute
#SBATCH --mem-per-cpu=4GB
#SBATCH --account=innovation
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module load 2023r1 openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=circles output_path=results mpi grid_search n_individuals=10 > experiments/grid_search_circles.log
#!/bin/bash
#SBATCH --job-name="Grid-search German Credit (ECCCo)"
#SBATCH --time=08:00:00
#SBATCH --ntasks=48
#SBATCH --cpus-per-task=1
#SBATCH --partition=compute
#SBATCH --mem-per-cpu=4GB
#SBATCH --account=innovation
#SBATCH --mail-type=END # Set mail type to 'END' to receive a mail when the job finishes.
module load 2023r1 openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=german_credit output_path=results mpi grid_search n_individuals=10 > experiments/grid_search_german_credit.log
\ No newline at end of file
......@@ -29,7 +29,7 @@ ce_measures = [CE_MEASURES..., ECCCo.distance_from_energy_cosine, ECCCo.distance
# Parameter choices:
params = (
n_individuals=N_IND_SPECIFIED ? N_IND : 100,
n_individuals=N_IND_SPECIFIED ? N_IND : 50,
builder=default_builder(n_hidden=128, n_layers=1, activation=Flux.swish),
𝒟x=Uniform(-1.0, 1.0),
α=[1.0, 1.0, 1e-2],
......
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