-
Notifications
You must be signed in to change notification settings - Fork 0
/
ringworld3.sh
60 lines (54 loc) · 2.43 KB
/
ringworld3.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
#SBATCH --account=def-bengioy
#SBATCH --cpus-per-task=24
#SBATCH --mem=16G
#SBATCH --time=48:0:0
# DEFAULT VALUES
TARGET="0.15"
BEHAVIOR="0.2"
RUNTIMES="240"
STEPS="1000000"
ALPHA="0.05"
# PARSE ARGS
while [ "$1" != "" ]; do
case $1 in
-a | --alpha )
shift
ALPHA=$1
;;
-e | --steps )
shift
STEPS=$1
;;
-r | --runtimes )
shift
RUNTIMES=$1
;;
--behavior )
shift
BEHAVIOR=$1
;;
--target )
shift
TARGET=$1
;;
esac
shift
done
echo "alpha: $ALPHA"
echo "target: $TARGET, behavior: $BEHAVIOR"
echo "runtimes: $RUNTIMES, steps: $STEPS"
sleep 1
# LOAD ENVIRONMENT
module load python/3.7 scipy-stack
source ~/ENV/bin/activate
# BASELINES AND LAMBDA_GREEDY
python predict_ringworld.py --alpha $ALPHA --kappa 0 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_MTA 0
# COARSE SEARCH FOR KAPPA
python predict_ringworld.py --alpha $ALPHA --kappa 1e-7 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-6 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-5 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-4 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-3 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-2 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0
python predict_ringworld.py --alpha $ALPHA --kappa 1e-1 --steps $STEPS --runtimes $RUNTIMES --behavior $BEHAVIOR --target $TARGET --evaluate_others 0