-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_task_1.sh
21 lines (14 loc) · 2.01 KB
/
run_task_1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
EXPERIMENT_DIR="./results/task_2_syn_data"
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm linear --trend linear+seasonal --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm non-linear --trend linear+seasonal --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm linear --trend linear --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm non-linear --trend linear --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm linear --trend seasonal --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --timesteps 100 --classifier dnn --scm non-linear --trend seasonal --experiment only-robust --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm linear --trend linear+seasonal --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm non-linear --trend linear+seasonal --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm linear --trend linear --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm non-linear --trend linear --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm linear --trend seasonal --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR
python test_causal_recourse.py --skip-ours --timesteps 100 --classifier dnn --scm non-linear --trend seasonal --experiment only-robust-2 --alpha 1.0 --output $EXPERIMENT_DIR