Skip to content

Commit 83ab4d8

Browse files
committed
Tweaked training scripts
1 parent 16af83f commit 83ab4d8

16 files changed

+112
-0
lines changed

scripts/HM_circle.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id circle --model_id H_MLP
7+

scripts/HM_equiv.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id equivalence --model_id H_MLP
7+

scripts/HM_family.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id family_tree --model_id H_MLP
7+

scripts/HM_lattice.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id lattice --model_id H_MLP
7+

scripts/HT_circle.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id circle --model_id H_transformer
7+

scripts/HT_equiv.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id equivalence --model_id H_transformer
7+

scripts/HT_family.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id family_tree --model_id H_transformer
7+

scripts/HT_lattice.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id lattice --model_id H_transformer
7+

scripts/M_circle.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id circle --model_id standard_MLP
7+

scripts/M_equiv.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
#SBATCH -t 16:00:00
3+
#SBATCH --gres=gpu:1
4+
#SBATCH -n 16
5+
6+
python ../src/run_exp.py --data_id equivalence --model_id standard_MLP
7+

0 commit comments

Comments
 (0)