[RLlib] PPO(torch) on CartPole not tuned well enough for consistent learning (#7556)

This commit is contained in:
Sven Mika
2020-03-12 04:31:27 +01:00
committed by GitHub
parent 932a749fa9
commit bc120730e5
2 changed files with 19 additions and 5 deletions
@@ -5,6 +5,13 @@ cartpole-ppo-tf:
episode_reward_mean: 150
timesteps_total: 100000
config:
gamma: 0.99
lr: 0.0003
num_workers: 1
batch_mode: complete_episodes
observation_filter: MeanStdFilter
num_sgd_iter: 6
vf_share_layers: true
vf_loss_coeff: 0.01
model:
fcnet_hiddens: [32]
fcnet_activation: linear
@@ -1,11 +1,18 @@
cartpole-ppo-tf:
cartpole-ppo-torch:
env: CartPole-v0
run: PPO
stop:
episode_reward_mean: 150
timesteps_total: 100000
config:
num_workers: 1
batch_mode: complete_episodes
observation_filter: MeanStdFilter
use_pytorch: true
gamma: 0.99
lr: 0.0003
num_workers: 1
observation_filter: MeanStdFilter
num_sgd_iter: 6
vf_share_layers: true
vf_loss_coeff: 0.01
model:
fcnet_hiddens: [32]
fcnet_activation: linear