A new rating system for competitive video games, based on start.gg data | GitHub Mirror: https://github.com/kiana-S/StartRNR
Find a file
2023-10-05 22:08:13 -04:00
schema Move CLI crate to root of workspace 2023-09-23 03:01:36 -04:00
src Fix SQL view not being deleted with dataset 2023-10-05 22:08:13 -04:00
.envrc Basic package structure 2023-08-26 03:37:24 -04:00
.gitignore Add nix build result to gitignore 2023-08-26 17:44:15 -04:00
build.rs Move CLI crate to root of workspace 2023-09-23 03:01:36 -04:00
Cargo.lock Rename to StartRNR 2023-10-03 23:37:51 -04:00
Cargo.toml Rename to StartRNR 2023-10-03 23:37:51 -04:00
DETAILS.md Update documentation 2023-09-23 03:37:22 -04:00
flake.lock Switch to using rust-overlay 2023-08-27 04:30:45 -04:00
flake.nix Write unit tests and fix various bugs 2023-10-05 01:47:09 -04:00
INSTALL.md Rename to StartRNR 2023-10-03 23:37:51 -04:00
LICENSE Initial commit 2023-08-25 21:46:08 -04:00
README.md Implement RNR rating adjustment 2023-10-04 18:06:44 -04:00

StartRNR

StartRNR is an implementation of the cutting-edge player rating system known as Relative Network Rating (RNR) for competitive gaming. It uses start.gg's tournament data to generate and maintain a network of relative advantages between players.

Once the advantage network is generated, StartRNR can be used to predict the probability of a player winning a match, generate provably optimal seedings for tournaments, inspect the match history of two players, and create competitive rankings automatically.

All of these features work for any game, in any region, without restriction.

Warning


StartRNR is still under development; currently, it only supports generating the network.

Installation

For more information, see the installation page.

Build and install StartRNR using cargo:

cargo install --git https://github.com/kiana-S/StartRNR

Alternatively, if you use Nix:

nix profile install github:kiana-S/StartRNR

Configuration

StartRNR stores its rating databases in its config directory, which is located at:

  • Windows: %APPDATA%\Roaming\startrnr
  • MacOS: ~/Library/Application Support/startrnr
  • Linux: ~/.config/startrnr

There are few reasons to access this directory directly, but you can if you want to transfer your datasets between computers.

RNR system basics

For more information on StartRNR's rating system, see the details page.