| Crates.io | bbt |
| lib.rs | bbt |
| version | 1.0.0 |
| created_at | 2016-09-18 12:35:46.989046+00 |
| updated_at | 2025-09-21 17:05:51.322631+00 |
| description | A skill-rating system similar to Elo, Glicko or TrueSkill |
| homepage | |
| repository | https://github.com/DataWraith/bbt |
| max_upload_size | |
| id | 6537 |
| size | 25,962 |
BBT is an implementation of a skill-rating system similar to Elo, Glicko or
TrueSkill. It follows Algorithm 1 from the paper
A Bayesian Approximation Method for Online Ranking.
Add BBT to your Cargo.toml:
[dependencies]
bbt = "1.0"
If you want to serialize Ratings with Serde, you will need
to add the following to your Cargo.toml instead:
[dependencies]
bbt = { version = "1.0", features = ["serde"] }
See the Documentation for information on how to use the crate.
Thank you for your contributions!