mirror of
https://github.com/wassname/ray.git
synced 2026-07-10 00:35:08 +08:00
[RLlib] PPO(torch) on CartPole not tuned well enough for consistent learning (#7556)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user