Learning-rate schedule for PPO / SAC — what works?
medium- PPO: linear anneal from 3e-4 to 0 over training.
- Adam optimizer, .
- SAC: fixed 3e-4 typically.
- LLM RLHF: much smaller LR (1e-6 to 1e-5) since starting from a well-trained model; sometimes with cosine schedule.
- Never use aggressive schedules that spike — RL is fragile to LR.
- Warmup helps prevent initial destabilization when starting fresh.
#engineeringPermalink & quiz →