The TrueSkill rating system
Project description
An implementation of the TrueSkill algorithm for Python. TrueSkill is a rating system among game players and it is used on Xbox Live to rank and match players.
>>> from trueskill import Rating, rate_1vs1, quality_1vs1 >>> r1, r2 = Rating(mu=25, sigma=8.333), Rating(mu=30, sigma=8.333) >>> 'Match quality = {:.1%}'.format(quality_1vs1(r1, r2)) 'Match quality = 41.6%' >>> rate_1vs1(r1, r2) (trueskill.Rating(mu=30.768, sigma=7.030), trueskill.Rating(mu=24.232, sigma=7.030))
Links
See Also
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
trueskill-0.2.tar.gz
(16.1 kB
view details)
File details
Details for the file trueskill-0.2.tar.gz
.
File metadata
- Download URL: trueskill-0.2.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 377f756c37168380a87410ebcb2bdd114d7a8ae40bafae4ef9fdc84ea55cab20 |
|
MD5 | 440c5ba33487f111740882b23f52361d |
|
BLAKE2b-256 | c29a8cfa17d36b2777ba952882df895b5e42d57d92dd5324f58f59d42b779ac6 |