-
Notifications
You must be signed in to change notification settings - Fork 115
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
Inconsistent ratings when drawing #63
Comments
Sigma goes down with every new result. Every new result is more data, more information on which to base an assessment of skill. And sigma is the measure of if uncertainty in the rating and its job is to go down as more and more data, game results, are submitted. How far sigma moves has nothing to do with the result, being not a measure of the skill but of confidence in the measure. It's also an ordered algorithm, meaning there's a difference between a lose, win and a win, lose sequence. Each and every submitted result is, based on existing player ratings and the outcome submitted. True skill is not a scoring system or reward system if you like, it's a skill assessment system which provides more accurate assessments with more data and tries to reasons as skill varies over time, of its fed with evidence of that shift. Check: In particular the help: |
Thank you very much for your answer. I understand what Sigma represent and therefore why it goes down with every new result. What I was pointing out is that Sigma goes more down with a draw than with a win. As you can see in what I posted, if the second game is a win, Sigma goes from 7.171 to 6.040. If the second game is a draw, Sigma goes down up to 5.678. I know True skill is an ordered system, that' why I said that according to the FAQ I linked, it should assing higher I'm just very confused by the output of such an easy example and I want to make sure I'm not doing anything wrong and/or that this is not any hint of a bug. |
I'm using TrueSkill to try to create a rating system for a tennis tournament among my friends. Games are 1v1, so I'm trying out the following:
This outputs the following:
I would have expected either both players having the same rating after these two games or
bob
have a higher rank, since according to TrueSkill FAQbut let's gogo with that for now, that's another issue.
However, if I remove the second game and replace it with a draw and re-run the thing:
I get the following:
bob
seems to have a better ranking when having drawn than when having won. Not only that, but also sigma is decreasing more than if there had been a winner, as it somehow was more significant a draw than a loss/victory.What's going on here? What am I doing wrong?
The text was updated successfully, but these errors were encountered: