Skip to content

Commit

Permalink
Document scoreLead and allow floats as winrate
Browse files Browse the repository at this point in the history
  • Loading branch information
yishn committed Mar 14, 2020
1 parent 4e7790d commit 052ba28
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/guides/engine-analysis-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,15 @@ Necessary key value pairs are:
[GTP vertex](https://www.lysator.liu.se/~gunnar/gtp/gtp2-spec-draft2/gtp2-spec.html#SECTION00042000000000000000)
of the move being analyzed.
- `visits` - The number of visits invested in `move` so far.
- `winrate` - The win rate percentage times 100 of `move`, e.g. `9543` for
`95.43%`.
- `winrate` - If specified as an integer, it represents the win rate percentage
times 100 of `move`, e.g. `9543` for `95.43%`. If specified as a float, i.e.
includes a `.`, it represents the win rate percentage given between `0.0` and
`1.0`.

Optional key value pairs:

- `scoreLead` - The predicted average number of points that the current side is
leading by when playing `move`.

The response will terminate when any input is written to `stdin`.

Expand Down

0 comments on commit 052ba28

Please sign in to comment.