-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
job script (train.py already supports this now)
- Loading branch information
Muhsin Fatih Yorulmaz
committed
Dec 15, 2019
1 parent
b2199e3
commit 50dbd13
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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,22 @@ | ||
CONTAINER=container/sandboxdir | ||
sing="singularity exec --nv $CONTAINER " | ||
(\ | ||
export CUDA_VISIBLE_DEVICES=0 | ||
JOBNAME=input96 | ||
$sing python3 -u 'train.py' --inputsize 96 --exp $JOBNAME >> outputs/$JOBNAME.log 2>&1 | ||
) # & | ||
(\ | ||
export CUDA_VISIBLE_DEVICES=0 | ||
JOBNAME=input64 | ||
$sing python3 -u 'train.py' --inputsize 64 --exp $JOBNAME >> outputs/$JOBNAME.log 2>&1 | ||
) # & | ||
(\ | ||
export CUDA_VISIBLE_DEVICES=0 | ||
JOBNAME=input48 | ||
$sing python3 -u 'train.py' --inputsize 48 --exp $JOBNAME >> outputs/$JOBNAME.log 2>&1 | ||
) # & | ||
(\ | ||
export CUDA_VISIBLE_DEVICES=0 | ||
JOBNAME=input36 | ||
$sing python3 -u 'train.py' --inputsize 36 --exp $JOBNAME >> outputs/$JOBNAME.log 2>&1 | ||
) # & |