-
Notifications
You must be signed in to change notification settings - Fork 0
/
sge.job
30 lines (29 loc) · 789 Bytes
/
sge.job
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
28
29
30
#!/usr/bin/env bash
# * smp (shared memory processing on a single machine up to 64 cores)
#$ -pe smp 1
# the queue to bind the job to
#$ -q gpu
# request 4 gpus
#$ -l gpu_card=1
#$ -l h=!qa-rtx6k-044
# job array to run multiple jobs
#$ -t 1-5
# the job name
#$ -N v6_Densenet_CE_training_alldatasets
echo " >> Running on $(uname -n)"
# Gain access to the CRC modules
if [ -r /opt/crc/Modules/current/init/bash ]; then
source /opt/crc/Modules/current/init/bash
fi
module load python
cd /afs/crc.nd.edu/user/j/jdulay/cyborg/cyborgXreactiontime/ || exit 1
. ./env2/bin/activate
./main.py \
--seed $SGE_TASK_ID \
-B DenseNet121 \
-L CE \
-T original_data \
--cyborg-loss-alpha 0.5 \
--psych-scaling-constant 0.7 \
--use-random-reactiontime normal \
--use-wandb-logger true