-
Notifications
You must be signed in to change notification settings - Fork 16
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
Handling convergence failure #1
Comments
Hi @saugatac - thanks for the comment. It's quite a while since I worked on this. Do you have examples of where convergence fails? Is the fix something you can add? |
@saugatac are you sure? This package was developed in 2013 and from the glicko website:
Which matches my understanding of the glicko2 paper as well. He says the old algorithm had convergence issues but the new one (Illinois Algorithm) does not. |
@positron I also found a infinite loop like @saugatac mentioned that convergence fails. In the debug mode, I just found that |
In RatingCalculator.calculateNewRating, sometimes the loop for convergence:
while (Math.abs(B - A) > CONVERGENCE_TOLERANCE)
fails to terminate. This possibility is also mentioned in the paper. It would be good if there is a maxiConvergenceIterations variable that can be used to control it.
The text was updated successfully, but these errors were encountered: