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
In the PlayerDay class, there are functions called won_game_terms and lost_game_terms.
Say in the won_game_terms function, for each game a player has won, we append this:
[1.0,0.0,1.0,other_gamma]
And similarly to the lost games terms, we append this:
[0.0,other_gamma,1.0,other_gamma]
Clearly I know what the gamma is as that is defined but what do the other positions/numbers in these lists represent?
The text was updated successfully, but these errors were encountered:
From the original paper:
The win chance for the player is his gamma/(his gamma + opponent gamma), the loss chance is opponent gamma/(his gamma + opponent gamma)
Sorry, something went wrong.
No branches or pull requests
In the PlayerDay class, there are functions called won_game_terms and lost_game_terms.
Say in the won_game_terms function, for each game a player has won, we append this:
[1.0,0.0,1.0,other_gamma]
And similarly to the lost games terms, we append this:
[0.0,other_gamma,1.0,other_gamma]
Clearly I know what the gamma is as that is defined but what do the other positions/numbers in these lists represent?
The text was updated successfully, but these errors were encountered: