Skip to content

Commit

Permalink
gypsum scripts for lstm in pytorch
Browse files Browse the repository at this point in the history
  • Loading branch information
sharath committed May 5, 2019
1 parent df90d47 commit c5f12f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
venv/
.ipynb_checkpoints/
*.pyc
*.idea/
2 changes: 1 addition & 1 deletion experiments/lstm/run.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
pipenv run python lstm.py --noise_level $1
pipenv run python lstm.py --seed $1
15 changes: 10 additions & 5 deletions experiments/lstm/submit.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
for ((i = 0; i <= 30; i++))
do
sbatch -p 1080ti-long --gres=gpu:1 run.sh $i
sbatch -p 1080ti-long --gres=gpu:1 run.sh $i
done
sbatch -p 1080ti-long --gres=gpu:1 run.sh 0
sbatch -p 1080ti-long --gres=gpu:1 run.sh 1
sbatch -p 1080ti-long --gres=gpu:1 run.sh 2
sbatch -p 1080ti-long --gres=gpu:1 run.sh 3
sbatch -p 1080ti-long --gres=gpu:1 run.sh 4
sbatch -p 1080ti-long --gres=gpu:1 run.sh 5
sbatch -p 1080ti-long --gres=gpu:1 run.sh 6
sbatch -p 1080ti-long --gres=gpu:1 run.sh 7
sbatch -p 1080ti-long --gres=gpu:1 run.sh 8
sbatch -p 1080ti-long --gres=gpu:1 run.sh 9

0 comments on commit c5f12f7

Please sign in to comment.