forked from federicovergallo/SUMO-changing-lane-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.ini
52 lines (50 loc) · 912 Bytes
/
config.ini
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
[ppo]
entropy_coef = 1e-2
critic_coef = 0.5
actor_lr = 3e-4
critic_lr = 3e-4
hidden_dim = 256
gamma = 0.99
lambda_ = 0.95
max_clip = 0.2
train_epoch = 10
traj_length = 5000
batch_size = 64
max_grad_norm = 0.5
layer_num = 3
activation_function = torch.tanh
last_activation = None
trainable_std = True
on_policy = True
[sac]
alpha_init = 0.2
gamma = 0.99
traj_length = 5000
q_lr = 3e-4
actor_lr = 3e-4
alpha_lr = 3e-4
soft_update_rate = 0.005
hidden_dim = 256
learn_start_size = 1000
memory_size = 1e+6
batch_size = 64
layer_num = 3
activation_function = torch.relu
last_activation = None
trainable_std = True
on_policy = False
[ddpg]
gamma = 0.99
traj_length = 5000
q_lr = 3e-4
actor_lr = 3e-4
soft_update_rate = 0.005
hidden_dim = 256
learn_start_size = 1000
memory_size = 1e+6
batch_size = 64
layer_num = 3
activation_function = torch.relu
last_activation = torch.tanh
trainable_std = False
on_policy = False