-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcat_walker_2.yml
49 lines (46 loc) · 1.12 KB
/
cat_walker_2.yml
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
CartPole-v1:
normalize: True
n_envs: 8
n_timesteps: !!float 1e5
policy: 'MlpLstmPolicy'
n_steps: 32
batch_size: 256
gae_lambda: 0.102
gamma: 0.796
n_epochs: 20
ent_coef: 0.123
vf_coef: 0.508
max_grad_norm: 0.118
learning_rate: lin_0.733
clip_range: lin_0.895
target_kl: 0.589
policy_kwargs: "dict(
ortho_init=False,
activation_fn=nn.ReLU,
lstm_hidden_size=64,
enable_critic_lstm=True,
net_arch=dict(pi=[64], vf=[64])
)"
BipedalWalker-v3:
normalize: true
n_envs: 32
n_timesteps: !!float 5e6
policy: 'MlpLstmPolicy'
n_steps: 256
batch_size: 256
gae_lambda: 0.903
gamma: 0.07
n_epochs: 10
ent_coef: 0.567
vf_coef: 0.485
learning_rate: !!float 7e-3
clip_range: 0.084
max_grad_norm: 0.933
target_kl: 0.819
policy_kwargs: "dict(
ortho_init=False,
activation_fn=nn.ReLU,
lstm_hidden_size=64,
enable_critic_lstm=True,
net_arch=dict(pi=[64], vf=[64])
)"