-
Notifications
You must be signed in to change notification settings - Fork 0
/
start_locally.sh
executable file
·71 lines (63 loc) · 1.49 KB
/
start_locally.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
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env bash
# source activate conda_env
# python ./taskgen_v2.py \
# -is_hpc False \
# -process_count_per_task 2 \
# -single_task False \
# -repeat 1 \
# -conda_env conda_env \
# -report apr_19_mountain_car_tests \
# -params_grid batch_size learning_rate \
# -batch_size 32 64 \
# -learning_rate 1e-3 1e-4 \
# -env_name MountainCar-v0 \
# -epsilon_decay 1e-8 \
# -isy_curiosity 1 \
# -curiosity_lambda 1 \
# -curiosity_beta 1
# source activate ml
# python ./taskgen_v2.py \
# -is_hpc False \
# -process_count_per_task 2 \
# -single_task False \
# -repeat 1 \
# -conda_env ml \
# -report apr_24_pong_determenistic_v0 \
# -params_grid curiosity_beta curiosity_lambda \
# -curiosity_lambda 0.2 0.4 0.6 0.8 1.0 \
# -curiosity_beta 0.2 0.4 0.6 0.8 1.0 \
# -batch_size 32 \
# -learning_rate 1e-3 \
# -env_name PongDeterministic-v0 \
# -epsilon_decay 1e-4 \
# -is_curiosity true \
# -n_episodes 500 \
# -mode 2 \
# -is_images true \
# -n_sequence 4 \
# -debug true \
# -device cuda \
# -encoder_last_layer_out 288 \
# -dqn_1_layer_out 256 \
# -inverse_1_layer_out 256 \
# -forward_1_layer_out 256 \
# -n_frame_skip 1 \
source activate ml
python ./taskgen_v2.py \
-is_hpc False \
-hpc_cpu_count 1 \
-process_count_per_task 1 \
-single_task False \
-repeat 1 \
-conda_env ml \
-report apr_28_cart_pole_grid \
-params_grid batch_size learning_rate \
-batch_size 32 64 \
-learning_rate 1e-3 1e-2 \
-env_name CartPole-v0 \
-epsilon_decay 1e-3 \
-debug false \
-is_curiosity true \
-device cpu \
-n_episodes 15 \
-device cpu \