bbt 1.0.0

A skill-rating system similar to Elo, Glicko or TrueSkill
Documentation
  • Coverage
  • 100%
    17 out of 17 items documented1 out of 12 items with examples
  • Size
  • Source code size: 25.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.59 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • DataWraith/bbt
    27 5 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DataWraith

BBT

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.

Instructions

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.

Contributors

Thank you for your contributions!

  • @rakenodiax contributed the initial Serde serialization support