-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFitzpatrick_train.sh
More file actions
27 lines (21 loc) · 1.04 KB
/
Fitzpatrick_train.sh
File metadata and controls
27 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
#SBATCH --job-name=Fitzpatrick_train # Job name
#SBATCH --mail-type=BEGIN,END,FAIL # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=manuel.cortes@ufl.edu # Where to send mail
#SBATCH --partition=gpu
#SBATCH --gpus=geforce:2
#SBATCH --mem=48gb # Job memory request
#SBATCH --time=96:00:00 # Time limit hrs:min:sec
#SBATCH --output=Fitzpatrick_train_%j.log # Standard output and error log
pwd; hostname; date
echo "Date = $(date)"
echo "Hostname = $(hostname -s)"
echo "Working Directory = $(pwd)"
echo ""
echo "Number of Nodes Allocated = $SLURM_JOB_NUM_NODES"
echo "Number of Tasks Allocated = $SLURM_NTASKS"
echo "Number of Cores/Task Allocated = $SLURM_CPUS_PER_TASK"
#Begin Script
ml singularity
singularity exec --nv pytorch1.5.0.sif python3 train_with_Fitzpatrick.py --kernel-type 9c_b4ns_448_ext_15ep-newfold --data-dir ./data/ --data-folder 512 --image-size 448 --enet-type tf_efficientnet_b4_ns --batch-size 2 --CUDA_VISIBLE_DEVICES 0
#End Script