diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-29 19:06:07 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-29 19:06:07 +0200 |
| commit | d4b42a5801dee188def140953e7ac6d9bc0a8c94 (patch) | |
| tree | 3c7576fcf0045b868c57af4ac2145d81ee21a086 | |
| parent | 64893a8b72ac982c6f8fe75f90a303e3b16de240 (diff) | |
| download | analyzer-d4b42a5801dee188def140953e7ac6d9bc0a8c94.tar.gz analyzer-d4b42a5801dee188def140953e7ac6d9bc0a8c94.zip | |
use middle of subtier to estimate TS
| -rw-r--r-- | worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
