File tree Expand file tree Collapse file tree 19 files changed +684
-37
lines changed
Expand file tree Collapse file tree 19 files changed +684
-37
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments