-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added folders param_scan and scan_size
- Loading branch information
1 parent
7b71004
commit 1c4be6f
Showing
12 changed files
with
978 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
#SBATCH -p batch #partition | ||
#SBATCH -t 03:30:00 | ||
#SBATCH --mem-per-cpu=5000 | ||
#SBATCH -o sbatch-hsw-%j.out | ||
#SBATCH -n 20 | ||
##SBATCH -c 4 | ||
#SBATCH -N 1 | ||
##SBATCH --constraint=hsw | ||
##SBATCH --array=50,100,150,200,250,300,350,400,450,500 | ||
|
||
### PREPARE ### | ||
|
||
module load anaconda3 | ||
source activate /scratch/work/jagerm1/custom_env/np_scipy_sklearn | ||
|
||
## use first input you get | ||
|
||
|
||
|
||
### PROCESS ### | ||
|
||
echo "start" | ||
echo $work_dir | ||
|
||
echo "Running Python sklearn_krr_mlp.py" | ||
# $1 = features | ||
# $2 = labels | ||
|
||
python3 sklearn_krr_mlp.py param $1 $2 krr | ||
############################################################################ | ||
echo "Name of the partition in which the job is running: $SLURM_JOB_PARTITION" | ||
echo "Name of the node running the job script: $SLURMD_NODENAME" | ||
echo " The ID of the job allocation: $SLURM_JOB_ID" | ||
echo " List of nodes allocated to the job: $SLURM_JOB_NODELIST" | ||
|
||
source deactivate | ||
|
||
echo "finnish" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
#SBATCH -p debug #partition | ||
#SBATCH -t 00:30:00 | ||
#SBATCH --mem-per-cpu=4000 | ||
#SBATCH -o sbatch-hsw-%j.out | ||
#SBATCH -n 16 | ||
##SBATCH -c 4 | ||
#SBATCH -N 1 | ||
##SBATCH --constraint=hsw | ||
##SBATCH --array=50,100,150,200,250,300,350,400,450,500 | ||
|
||
### PREPARE ### | ||
|
||
module load anaconda3 | ||
source activate /scratch/work/jagerm1/custom_env/np_scipy_sklearn | ||
|
||
## use first input you get | ||
|
||
|
||
|
||
### PROCESS ### | ||
|
||
echo "start" | ||
echo $work_dir | ||
echo "Running Python sklearn_krr_mlp.py" | ||
# $1 = features | ||
# $2 = labels | ||
|
||
python3 sklearn_krr_mlp.py param $1 $2 krr | ||
|
||
############################################################################ | ||
echo "Name of the partition in which the job is running: $SLURM_JOB_PARTITION" | ||
echo "Name of the node running the job script: $SLURMD_NODENAME" | ||
echo " The ID of the job allocation: $SLURM_JOB_ID" | ||
echo " List of nodes allocated to the job: $SLURM_JOB_NODELIST" | ||
|
||
source deactivate | ||
|
||
echo "finnish" | ||
|
||
|
Oops, something went wrong.