Views
No views yet
probs.sample()) rather than greedily (argmax), even a
genuinely decent policy can crash in any individual episode. A good mean
eval reward does not guarantee a good-looking replay video.1exp_name: ppo
2seed: 2
3torch_deterministic: True
4cuda: False
5capture_video: False
6env_id: LunarLander-v3
7total_timesteps: 1000000
8learning_rate: 0.00025
9num_envs: 4
10num_steps: 128
11anneal_lr: True
12gae: True
13gamma: 0.99
14gae_lambda: 0.95
15num_minibatches: 4
16update_epochs: 4
17norm_adv: True
18clip_coef: 0.2
19clip_vloss: True
20ent_coef: 0.01
21vf_coef: 0.5
22max_grad_norm: 0.5
23target_kl: None
24eval_episodes: 20
25eval_freq: 0
26bootstrap_truncation: False
27repo_id: MikeDegany/ppo-LunarLander-v3
28save_path: /home/UNT/md0708/RL/ppo_model.pt
29batch_size: 512
30minibatch_size: 128