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
안녕하세요, mario_curio.py 파일에서 의문점이 들어 issue 남깁니다. Line 277번째 줄에서 다음과 같이 entropy loss 항이 추가되어 계산되어야 하지 않나요?
기존) loss = (actor_loss + 0.5 * critic_loss) + icm_scale * ((1 - beta) * inverse_loss + beta * forward_loss)
변경) loss = (actor_loss + 0.5 * critic_loss - entropy_coef * entropy) + icm_scale * ((1 - beta) * inverse_loss + beta * forward_loss)'
감사합니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
안녕하세요, mario_curio.py 파일에서 의문점이 들어 issue 남깁니다.
Line 277번째 줄에서 다음과 같이 entropy loss 항이 추가되어 계산되어야 하지 않나요?
기존) loss = (actor_loss + 0.5 * critic_loss) + icm_scale *
((1 - beta) * inverse_loss + beta * forward_loss)
변경) loss = (actor_loss + 0.5 * critic_loss - entropy_coef * entropy) + icm_scale *
((1 - beta) * inverse_loss + beta * forward_loss)'
감사합니다.
The text was updated successfully, but these errors were encountered: