-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Fix/clip post-lapse stability #30
Conversation
When the long-term scheduler is enabled, should I currently only know that |
Yes. So exp(w[17] * w[18]) = 1. |
I understand, but after switching to the long-term scheduler, var newSMin float64
if p.EnableShortTerm {
newSMin = s / math.Exp(p.W[17]*p.W[18])
} else {
newSMin = s
}
// or
var newSMin float64 = s
if p.EnableShortTerm {
newSMin = s / math.Exp(p.W[17]*p.W[18])
} |
Right. I have another idea: when |
I think that continuously switching schedulers might confuse developers, as they may not understand why |
OK, I will update the PR based on your suggestion tomorrow. |
This reverts commit 98720c5.
@ishiko732 cc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
related PR: