forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvs.ctl
More file actions
24 lines (22 loc) · 861 Bytes
/
Copy pathvs.ctl
File metadata and controls
24 lines (22 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
players = {
"leelaz" : Player("../leela-zero/build/leelaz"
" --weights best-network"
" --timemanage off -r 3"
" --noponder"
" -g",
startup_gtp_commands=[
"time_settings 0 5 1",
],
cwd="../leela-zero/build"),
"minigo" : Player("bazel-bin/cc/gtp"
" --minigui=true"
" --model=tf,saved_models/000990-cormorant.pb"
" --num_readouts=200"
" --value_init_penalty=0"
" --courtesy_pass=true"
" --virtual_losses=8"
" --resign_threshold=-0.8",
startup_gtp_commands=[
"report_search_interval 100",
]),
}