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

uh

parents 7eeca2a8 793361d6
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
......@@ -1577,9 +1577,9 @@ uuid = "f57f5aa1-a3ce-4bc8-8ab9-96f992907883"
version = "0.4.0"
[[deps.PackageExtensionCompat]]
git-tree-sha1 = "f9b1e033c2b1205cf30fd119f4e50881316c1923"
git-tree-sha1 = "fb28e33b8a95c4cee25ce296c817d89cc2e53518"
uuid = "65ce6f38-6b18-4e1d-a461-8949797d7930"
version = "1.0.1"
version = "1.0.2"
weakdeps = ["Requires", "TOML"]
[[deps.PaddedViews]]
......
using Pkg
Plg.update()
Pkg.update()
Pkg.resolve()
Pkg.instantiate()
\ No newline at end of file
Pkg.instantiate()
#!/bin/bash
#SBATCH --job-name="Grid-search Germand Credit (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --partition=general
#SBATCH --mem-per-cpu=8GB
#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=german_credit output_path=results mpi grid_search > experiments/grid_search_german_credit.log
#!/bin/bash
#SBATCH --job-name="Grid-search GMSC (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --partition=general
#SBATCH --mem-per-cpu=8GB
#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=gmsc output_path=results mpi grid_search > experiments/grid_search_gmsc.log
#!/bin/bash
#SBATCH --job-name="Grid-search Synthetic (ECCCo)"
#SBATCH --time=04:00:00
#SBATCH --time=02:00:00
#SBATCH --ntasks=1000
#SBATCH --cpus-per-task=1
#SBATCH --partition=general
......@@ -11,4 +11,4 @@
module use /opt/insy/modulefiles # Use DAIC INSY software collection
module load openmpi
srun julia --project=experiments experiments/run_experiments.jl -- data=linearly_separable,moons,circles output_path=results mpi grid_search > experiments/grid_search_synthetic.log
srun julia --project=experiments experiments/run_experiments.jl -- data=circles output_path=results mpi grid_search > experiments/grid_search_synthetic.log
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