-
Notifications
You must be signed in to change notification settings - Fork 99
/
run_games.py
532 lines (464 loc) · 17.2 KB
/
run_games.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
import re
import os
import subprocess
import sys
import time
import argparse
import features
import shutil
import threading
import math
import random
from pathlib import Path, PurePath
GLOBAL_LOCK = threading.Lock()
def print_atomic(*args, **kwargs):
GLOBAL_LOCK.acquire()
try:
print(*args, **kwargs)
finally:
GLOBAL_LOCK.release()
class GameParams:
def __init__(self, hash, threads, games_per_round, time_per_game=None, time_increment_per_move=None, nodes_per_move=None):
self.hash = hash
self.threads = threads
self.games_per_round = games_per_round
self.time_per_game = time_per_game
self.time_increment_per_move = time_increment_per_move
self.nodes_per_move = nodes_per_move
if not time_per_game and not time_increment_per_move and not nodes_per_move:
raise Exception('Invalid TC specification.')
def get_all_params(self):
params = []
params += ['-each']
params += [
f'option.Hash={self.hash}',
f'option.Threads={self.threads}',
f'timeout=20'
]
if self.nodes_per_move:
params += [
f'tc=10000+10000',
f'nodes={self.nodes_per_move}',
]
else:
inc = self.time_increment_per_move or 0
params += [f'tc={self.time_per_game}+{inc}']
params += ['-games', f'{self.games_per_round}']
return params
def convert_ckpt(root_dir,features):
""" Find the list of checkpoints that are available, and convert those that have no matching .nnue """
# run96/run0/default/version_0/checkpoints/epoch=3.ckpt, or epoch=3-step=321151.ckpt
p = re.compile("epoch.*\.ckpt")
ckpts = [str(file) for file in Path(root_dir).rglob("epoch*.ckpt")]
# lets move the .nnue files a bit up in the tree, and get rid of the = sign.
# run96/run0/default/version_0/checkpoints/epoch=3.ckpt -> run96/run0/nn-epoch3.nnue
for ckpt in ckpts:
nnue_file_name = re.sub("default[/\\\\]version_[0-9]+[/\\\\]checkpoints[/\\\\]", "", ckpt) # for older pytorch lightning
nnue_file_name = re.sub("lightning_logs[/\\\\]version_[0-9]+[/\\\\]checkpoints[/\\\\]", "", nnue_file_name) # for newer pytorch lightning
nnue_file_name = re.sub(r"epoch\=([0-9]+).*\.ckpt", r"nn-epoch\1.nnue", nnue_file_name)
if not os.path.exists(nnue_file_name) and os.path.exists(ckpt):
with subprocess.Popen([sys.executable, 'serialize.py', ckpt, nnue_file_name, f'--features={features}']) as process:
if process.wait():
print_atomic("Error serializing!")
def find_nnue(root_dir):
""" Find the set of nnue nets that are available for testing, going through the full subtree """
return [str(file) for file in Path(root_dir).rglob("nn-epoch*.nnue")]
def parse_ordo(root_dir, nnues):
""" Parse an ordo output file for rating and error """
ordo_file_name = os.path.join(root_dir, "ordo.out")
ordo_scores = {}
for name in nnues:
ordo_scores[name] = (-500, 1000)
if os.path.exists(ordo_file_name):
ordo_file = open(ordo_file_name, "r")
lines = ordo_file.readlines()
for line in lines:
if "nn-epoch" in line:
fields = line.split()
net = fields[1]
rating = float(fields[3])
error = float(fields[4])
for name in nnues:
if net in name:
ordo_scores[name] = (rating, error)
return ordo_scores
def run_match(best, root_dir, c_chess_exe, concurrency, book_file_name, stockfish_base, stockfish_test, game_params, tries=10):
""" Run a match using c-chess-cli adding pgns to a file to be analysed with ordo """
pgn_file_name = os.path.join(root_dir, "out_temp.pgn")
command = []
if sys.platform != "win32":
command += ['stdbuf', '-o0']
command += [
c_chess_exe,
'-gauntlet', '-rounds', '1',
'-concurrency', f'{concurrency}'
]
command += game_params.get_all_params()
command += [
'-openings', f'file={book_file_name}', 'order=random', f'srand={random.randint(0,100000000)}', '-repeat',
'-resign', 'count=3', 'score=700',
'-draw', 'count=8', 'score=10',
'-pgn', f'{pgn_file_name}', '0'
]
command += ['-engine', f'cmd={stockfish_base}', 'name=master']
for net in best:
evalfile = os.path.join(os.getcwd(), net)
netname = PurePath(*PurePath(evalfile).parts[-2:])
command += ['-engine', f'cmd={stockfish_test}', f'name={netname}', f'option.EvalFile={evalfile}']
# Attempt to run the match multiple times in case of unforseen
# errors like engine hanging or c-chess-cli having an error...
for i in range(tries):
print_atomic(" ".join(command))
print_atomic("Running match with c-chess-cli ... {}".format(pgn_file_name), flush=True)
c_chess_out = open(os.path.join(root_dir, "c_chess.out"), 'w')
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
seen = {}
for line in process.stdout:
line = line.decode('utf-8')
c_chess_out.write(line)
if 'Score' in line:
epoch_num = re.search(r'epoch(\d+)', line)
if epoch_num.group(1) not in seen:
sys.stdout.write('\n')
seen[epoch_num.group(1)] = True
sys.stdout.write('\r' + line.rstrip())
sys.stdout.flush()
sys.stdout.write('\n')
c_chess_out.close()
if process.wait() != 0:
if i == tries-1:
print_atomic("Error running match!")
else:
print_atomic(f'Retrying running match ({i}/{tries}) in 10s ...')
time.sleep(10)
else:
break
print_atomic("Finished running match.")
class EngineResults:
def __init__(self, name):
self._name = name
self._losses = 0
self._wins = 0
self._draws = 0
def add_wins(self, n=1):
self._wins += n
def add_draws(self, n=1):
self._draws += n
def add_losses(self, n=1):
self._losses += n
@property
def name(self):
return self._name
@property
def wins(self):
return self._wins
@property
def draws(self):
return self._draws
@property
def losses(self):
return self._losses
@property
def total_games(self):
return self._wins + self._draws + self._losses
@property
def points(self):
return self._wins + self._draws * 0.5
@property
def performance(self):
return self.points / self.total_games
def _elo(self, x):
epsilon = 1e-3
x = max(x, epsilon)
x = min(x, 1 - epsilon)
return -400 * math.log10(1 / x - 1)
@property
def elo(self):
return self._elo(self.performance)
@property
def elo_error_95(self):
return 400 / math.sqrt(self.total_games)
def run_approximate_ordo(root_dir):
""" run an approximate ordo-like calculation on an existing pgn file """
""" it takes advantege of the fact that all matches are ran against master """
pgn_file_name = os.path.join(root_dir, "out.pgn")
ordo_file_name = os.path.join(root_dir, "ordo.out")
ordo_file_name_temp = os.path.join(root_dir, "ordo_temp.out")
entries = dict()
white = None
black = None
try:
with open(pgn_file_name, 'r', encoding='utf-8') as pgn_file:
for line in pgn_file:
line = line.strip()
if line.startswith('[White'):
white = line[8:-2]
elif line.startswith('[Black'):
black = line[8:-2]
elif line.startswith('[Result') and white is not None and black is not None:
result_str = line[9:-2]
if white not in entries:
entries[white] = EngineResults(white)
if black not in entries:
entries[black] = EngineResults(black)
if result_str == '1-0':
entries[white].add_wins(1)
entries[black].add_losses(1)
elif result_str == '0-1':
entries[white].add_losses(1)
entries[black].add_wins(1)
if result_str == '1/2-1/2':
entries[white].add_draws(1)
entries[black].add_draws(1)
except:
return
entries_ordered = sorted(entries.values(), key=lambda x:0 if x.name == 'master' else -x.elo)
with open(ordo_file_name_temp, 'w') as ordo_file:
ordo_file.write('\n')
ordo_file.write(' # PLAYER : RATING ERROR POINTS PLAYED (%)\n')
for i, entry in enumerate(entries_ordered):
if entry.name == 'master':
entry_elo = ' 0.0'
entry_elo_error_95 = '----'
else:
entry_elo = f'{entry.elo:0.1f}'
entry_elo_error_95 = f'{entry.elo_error_95:0.1f}'
entry_points = f'{entry.points:0.1f}'
entry_performance = f'{entry.performance*100:0.0f}'
ordo_file.write(f' {i+1:2} {entry.name:<26} : {entry_elo:>7} {entry_elo_error_95:>6} {entry_points:>9} {entry.total_games:>7} {entry_performance:>4}\n')
ordo_file.write('\n')
if not os.path.exists(ordo_file_name):
os.rename(ordo_file_name_temp, ordo_file_name)
else:
os.replace(ordo_file_name_temp, ordo_file_name)
print_atomic("Finished running ordo.")
def run_ordo(root_dir, ordo_exe, concurrency):
""" run an ordo calculation on an existing pgn file """
pgn_file_name = os.path.join(root_dir, "out.pgn")
ordo_file_name = os.path.join(root_dir, "ordo.out")
ordo_file_name_temp = os.path.join(root_dir, "ordo_temp.out")
command = [
ordo_exe,
'-q',
'-g',
'-J',
'-p', f'{pgn_file_name}',
'-a', '0.0',
'--anchor=master',
'--draw-auto',
'--white-auto',
'-s', '100',
f'--cpus={concurrency}',
'-o', f'{ordo_file_name_temp}'
]
print_atomic("Running ordo ranking ... {}".format(ordo_file_name), flush=True)
with subprocess.Popen(command) as process:
if process.wait():
print_atomic("Error running ordo!")
else:
os.replace(ordo_file_name_temp, ordo_file_name)
print_atomic("Finished running ordo.")
def run_round(
root_dir,
explore_factor,
ordo_exe,
c_chess_exe,
stockfish_base,
stockfish_test,
book_file_name,
concurrency,
features,
game_params
):
""" run a round of games, finding existing nets, analyze an ordo file to pick most suitable ones, run a round, and run ordo """
# find and convert checkpoints to .nnue
convert_ckpt(root_dir, features)
# find a list of networks to test
nnues = find_nnue(root_dir)
if len(nnues) == 0:
print_atomic("No .nnue files found in {}".format(root_dir))
time.sleep(10)
return
else:
print_atomic("Found {} nn-epoch*.nnue files".format(len(nnues)))
# Get info from ordo data if that is around
ordo_scores = parse_ordo(root_dir, nnues)
# provide the top 3 nets
print_atomic("Best nets so far:")
ordo_scores = dict(
sorted(ordo_scores.items(), key=lambda item: item[1][0], reverse=True)
)
count = 0
for net in ordo_scores:
print_atomic(" {} : {} +- {}".format(net, ordo_scores[net][0], ordo_scores[net][1]))
count += 1
if count == 3:
break
# get top 3 with error bar added, for further investigation
print_atomic("Measuring nets:")
ordo_scores = dict(
sorted(
ordo_scores.items(),
key=lambda item: item[1][0] + explore_factor * item[1][1],
reverse=True,
)
)
best = []
for net in ordo_scores:
print_atomic(" {} : {} +- {}".format(net, ordo_scores[net][0], ordo_scores[net][1]))
best.append(net)
if len(best) == 3:
break
# run these nets against master...
# and run a new ordo ranking for the games played so far
run_match_thread = threading.Thread(
target=run_match,
args=(best, root_dir, c_chess_exe, concurrency, book_file_name, stockfish_base, stockfish_test, game_params)
)
if ordo_exe:
run_ordo_thread = threading.Thread(
target=run_ordo,
args=(root_dir, ordo_exe, concurrency)
)
else:
run_ordo_thread = threading.Thread(
target=run_approximate_ordo,
args=(root_dir,)
)
run_match_thread.start()
run_ordo_thread.start()
run_match_thread.join()
run_ordo_thread.join()
# we write current match info to a temporary file and then copy back
# to allow ordo to run in parallel (since it's single threaded and may take a long time)
# we then append the new games to the main file
main_pgn_file_name = os.path.join(root_dir, "out.pgn")
curr_pgn_file_name = os.path.join(root_dir, "out_temp.pgn")
if not os.path.exists(main_pgn_file_name):
with open(main_pgn_file_name, 'w'): pass
try:
with open(main_pgn_file_name, 'a') as file_to:
with open(curr_pgn_file_name, 'r') as file_from:
for line in file_from:
file_to.write(line)
os.remove(curr_pgn_file_name)
except:
print_atomic('Something went wrong when adding new games to the main file.')
def main():
# basic setup
parser = argparse.ArgumentParser(
description="Finds the strongest .nnue / .ckpt in tree, playing games.",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"root_dir",
type=str,
help="""The directory where to look, recursively, for .nnue or .ckpt.
This directory will be used to store additional files,
in particular the ranking (ordo.out)
and game results (out.pgn and c_chess.out).""",
)
parser.add_argument(
"--concurrency",
type=int,
default=8,
help="Number of concurrently running threads",
)
parser.add_argument(
"--explore_factor",
default=1.5,
type=float,
help="`expected_improvement = rating + explore_factor * error` is used to pick select the next networks to run.",
)
parser.add_argument(
"--ordo_exe",
type=str,
default=None,
help="Path to ordo, see https://github.com/michiguel/Ordo. If None then an approximate computation will be performed.",
)
parser.add_argument(
"--c_chess_exe",
type=str,
default="./c-chess-cli",
help="Path to c-chess-cli, see https://github.com/lucasart/c-chess-cli",
)
parser.add_argument(
"--stockfish_base",
type=str,
default="./stockfish",
help="Path to stockfish master (reference version), see https://github.com/official-stockfish/Stockfish",
)
parser.add_argument(
"--stockfish_test",
type=str,
help="(optional) Path to new stockfish binary, if not set, will use stockfish_base",
)
parser.add_argument(
"--book_file_name",
type=str,
default="./noob_3moves.epd",
help="Path to a suitable book, see https://github.com/official-stockfish/books",
)
parser.add_argument(
"--time_per_game",
type=float,
default=4.0
)
parser.add_argument(
"--time_increment_per_move",
type=float,
default=0.04
)
parser.add_argument(
"--nodes_per_move",
type=int,
default=None,
help="Overrides time per move."
)
parser.add_argument(
"--hash",
type=int,
default=8
)
parser.add_argument(
"--threads",
type=int,
default=1
)
parser.add_argument(
"--games_per_round",
type=int,
default=200
)
features.add_argparse_args(parser)
args = parser.parse_args()
stockfish_base = args.stockfish_base
stockfish_test = args.stockfish_test
if stockfish_test is None:
stockfish_test = stockfish_base
if not shutil.which(stockfish_base):
sys.exit("Stockfish base is not executable !")
if not shutil.which(stockfish_test):
sys.exit("Stockfish test is not executable!")
if args.ordo_exe and not shutil.which(args.ordo_exe):
sys.exit("ordo is not executable!")
if not shutil.which(args.c_chess_exe):
sys.exit("c_chess_cli is not executable!")
if not os.path.exists(args.book_file_name):
sys.exit("book does not exist!")
random.seed()
while True:
run_round(
args.root_dir,
args.explore_factor,
args.ordo_exe,
args.c_chess_exe,
stockfish_base,
stockfish_test,
args.book_file_name,
args.concurrency,
args.features,
GameParams(args.hash, args.threads, args.games_per_round, args.time_per_game, args.time_increment_per_move, args.nodes_per_move)
)
if __name__ == "__main__":
main()