Skip to content

Commit

Permalink
faq: fix rating section
Browse files Browse the repository at this point in the history
  • Loading branch information
Equim-chan committed Feb 2, 2024
1 parent c538511 commit 5d939d5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,14 @@ Akochan is very aggressive about its sole goal - the "final" pt EV, instead of j
## How is the rating calculated?
$$
100 \times (
\frac{1}{K} \displaystyle \sum_{i=1}^K
\frac{1}{N_i} \displaystyle \sum_{j=1}^{N_i}
\frac{1}{n} \displaystyle \sum_{i=1}^n
\frac
{\hat Q^\pi(s_{i,j}, a_{i,j}) - \displaystyle \min_a \hat Q^\pi(s_{i,j}, a_{i,j})}
{\displaystyle \max_a \hat Q^\pi(s_{i,j}, a_{i,j}) - \displaystyle \min_a \hat Q^\pi(s_{i,j}, a_{i,j})}
) ^ 2
$$

where $K$ is the number of rounds and $N_i$ is the number of player's actions in $i$-th round.
where $n$ is the number of the player's actions across all rounds.

Why square? Nothing special but just to please the human eye. Since the raw calculated value is usually very close to 1, squaring it makes it harder to get closer to 1.

Expand Down

0 comments on commit 5d939d5

Please sign in to comment.