mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
35 lines
1,013 B
YAML
35 lines
1,013 B
YAML
halfcheetah-pybullet-sac:
|
|
env: HalfCheetahBulletEnv-v0
|
|
run: SAC
|
|
stop:
|
|
episode_reward_mean: 800.0
|
|
config:
|
|
# Works for both torch and tf.
|
|
framework: tf
|
|
horizon: 1000
|
|
soft_horizon: false
|
|
q_model_config:
|
|
fcnet_activation: relu
|
|
fcnet_hiddens: [256, 256]
|
|
policy_model_config:
|
|
fcnet_activation: relu
|
|
fcnet_hiddens: [256, 256]
|
|
tau: 0.005
|
|
target_entropy: auto
|
|
no_done_at_end: false
|
|
n_step: 3
|
|
rollout_fragment_length: 1
|
|
train_batch_size: 256
|
|
target_network_update_freq: 1
|
|
min_sample_timesteps_per_iteration: 1000
|
|
replay_buffer_config:
|
|
type: MultiAgentPrioritizedReplayBuffer
|
|
learning_starts: 10000
|
|
optimization:
|
|
actor_learning_rate: 0.0003
|
|
critic_learning_rate: 0.0003
|
|
entropy_learning_rate: 0.0003
|
|
num_workers: 0
|
|
num_gpus: 1
|
|
metrics_smoothing_episodes: 5
|
|
|