File size: 732 Bytes
62e03a2 |
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 |
general_cfg:
algo_name: TD3
device: cpu
env_name: gym
eval_eps: 5
eval_per_episode: 10
load_checkpoint: true
load_path: Train_gym_TD3_20230416-214019
max_steps: 200
mode: test
mp_backend: mp
n_workers: 1
new_step_api: true
render: false
render_mode: human
save_fig: true
seed: 1
show_fig: false
test_eps: 10
train_eps: 200
wrapper: null
algo_cfg:
actor_hidden_dim: 256
actor_lr: 0.001
batch_size: 100
buffer_size: 1000000
critic_hidden_dim: 256
critic_lr: 0.001
expl_noise: 0.1
explore_steps: 1000
gamma: 0.99
global_best_reward: -1800
noise_clip: 0.5
policy_freq: 2
policy_noise: 0.2
tau: 0.005
env_cfg:
id: Pendulum-v1
new_step_api: true
render_mode: null
|