-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
34 lines (28 loc) · 843 Bytes
/
main.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
from Coach import Coach
from connect4.Connect4Game import Connect4Game
from connect4.tensorflow.NNet import NNetWrapper as nn
from utils import dotdict
args = dotdict({
'numIters': 1000,
'numEps': 20,
'tempThreshold': 15,
'updateThreshold': 0.51,
'maxlenOfQueue': 200000,
'numMCTSSims': 25,
'arenaCompare': 10,
'cpuct': 1,
'checkpoint': './temp/',
'load_model': False,
'load_folder_file': ('./connect4/tensorflow','best.pth.tar'),
'numItersForTrainExamplesHistory': 20,
})
if __name__=="__main__":
g = Connect4Game()
nnet = nn(g)
if args.load_model:
nnet.load_checkpoint(args.load_folder_file[0], args.load_folder_file[1])
c = Coach(g, nnet, args)
if args.load_model:
print("Load trainExamples from file")
c.loadTrainExamples()
c.learn()