Skip to content

Commit 5bdaaf4

Browse files
committed
Minor changes in dataset.py and run_exp.py
1 parent 659b4e9 commit 5bdaaf4

19 files changed

+684
-37
lines changed

notebooks/plot_runs.ipynb

Lines changed: 367 additions & 0 deletions
Large diffs are not rendered by default.

scripts/circle_run.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
python ../src/run_exp.py --data_id circle --model_id H_MLP
8+
python ../src/run_exp.py --data_id circle --model_id standard_transformer
9+
python ../src/run_exp.py --data_id circle --model_id H_transformer
10+

scripts/equiv_run.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
python ../src/run_exp.py --data_id equivalence --model_id H_MLP
8+
python ../src/run_exp.py --data_id equivalence --model_id standard_transformer
9+
python ../src/run_exp.py --data_id equivalence --model_id H_transformer
10+

scripts/family_tree_run.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 standard_MLP
7+
python ../src/run_exp.py --data_id family_tree --model_id H_MLP
8+
python ../src/run_exp.py --data_id family_tree --model_id standard_transformer
9+
python ../src/run_exp.py --data_id family_tree --model_id H_transformer
10+

scripts/greater_run.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 greater --model_id standard_MLP
7+
python ../src/run_exp.py --data_id greater --model_id H_MLP
8+
python ../src/run_exp.py --data_id greater --model_id standard_transformer
9+
python ../src/run_exp.py --data_id greater --model_id H_transformer
10+

scripts/lattice_run.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 standard_MLP
7+
python ../src/run_exp.py --data_id lattice --model_id H_MLP
8+
python ../src/run_exp.py --data_id lattice --model_id standard_transformer
9+
python ../src/run_exp.py --data_id lattice --model_id H_transformer
10+

scripts/u_circle.sh

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

scripts/u_equiv.sh

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

scripts/u_family.sh

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

scripts/u_greater.sh

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

0 commit comments

Comments
 (0)