We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
v_loss += (v - R) ** 2 / 2
But the original paper just calculate the derivative of the (V-R)^2 right?
The text was updated successfully, but these errors were encountered:
And you mentioned in https://github.com/muupan/async-rl/wiki They multiply the gradients of V by 0.5. So in the a3c.py there are the parameters (pi_loss_coef=1.0, v_loss_coef=0.5) But why there is another 0.5 in v_loss?
Sorry, something went wrong.
No branches or pull requests
v_loss += (v - R) ** 2 / 2
But the original paper just calculate the derivative of the (V-R)^2 right?
The text was updated successfully, but these errors were encountered: