mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

* WIP. * WIP. * WIP. * WIP. * WIP. * Fix * WIP. * Add TD3 quick Pendulum regresison. * Cleanup. * Fix. * LINT. * Fix. * Sort quick_learning test cases, add TD3. * Sort quick_learning test cases, add TD3. * Revert test_checkpoint_restore.py (debugging) changes. * Fix old soft_q settings in documentation and test configs. * More doc fixes. * Fix test case. * Fix test case. * Lower test load. * WIP.
23 lines
707 B
YAML
23 lines
707 B
YAML
invertedpendulum-td3:
|
|
# This is a TD3 with stopping conditions and network size tuned specifically
|
|
# for InvertedPendulum. Should be able to reach 1,000 reward (the maximum
|
|
# achievable) in 10,000 to 20,000 steps.
|
|
env: InvertedPendulum-v2
|
|
run: TD3
|
|
stop:
|
|
episode_reward_mean: 9999.9
|
|
time_total_s: 900 # 15 minutes
|
|
timesteps_total: 1000000
|
|
config:
|
|
# === Model ===
|
|
actor_hiddens: [32, 32]
|
|
critic_hiddens: [32, 32]
|
|
|
|
# === Exploration ===
|
|
learning_starts: 1000
|
|
exploration_config:
|
|
random_timesteps: 1000
|
|
|
|
# === Evaluation ===
|
|
evaluation_interval: 1
|
|
evaluation_num_episodes: 5
|