Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial exploration steps differ between Mujoco envs like TD3 ? #83

Closed
zuoxingdong opened this issue May 10, 2019 · 1 comment
Closed

Comments

@zuoxingdong
Copy link

I would like to quickly confirm if it is also recommended for SAC to set different initial exploration steps similar to TD3 (e.g. 1e4 for HalfCheetah, 1e3 for Hopper) ?

@haarnoja
Copy link
Contributor

Hi, random initial exploration helps to reduce solution's dependency on the initial weights of the policy. The more random steps you add, less variation there will be between training trials. A good rule of thumb is to have a fixed number (say 10) of exploration episodes. Unfortunately our code does not support fixing the number of episodes (we can only set the number of steps), so we set 1e4 steps for HC (which has fixed length episodes of 1000 steps) and 1e3 for Hopper (which has varying episode length of around 100 steps initially). Hope this answers your question!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants