From d4b42a5801dee188def140953e7ac6d9bc0a8c94 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 29 May 2017 19:06:07 +0200 Subject: use middle of subtier to estimate TS --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index 302e5aa..7ded73f 100644 --- a/worker.py +++ b/worker.py @@ -139,7 +139,7 @@ def process(): sigma = participant.trueskill_sigma or player.trueskill_sigma if mu is None: # no data -> approximate ts by VST - mu = participant.skill_tier * 100 + mu = (participant.skill_tier + 0.5) * 100 if mu < 1: mu = 1 # unranked sigma = mu / 3 -- cgit v1.3.1