-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
33 lines (28 loc) · 827 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
from Coach import Coach
from quoridor.QuoridorGame import QuoridorGame as Game
from quoridor.pytorch.NNet import NNetWrapper as nn
from utils import *
args = dotdict({
'numIters': 10, #1000
'numEps': 50, #100
'tempThreshold': 15,
'updateThreshold': 0.55,
'maxlenOfQueue': 200000,
'numMCTSSims': 50,
'arenaCompare': 40,
'cpuct': 1,
'checkpoint': './temp/',
'load_model': True,
'load_folder_file': ('./temp','5x5best.pth.tar'),
'numItersForTrainExamplesHistory': 20,
})
if __name__=="__main__":
g = Game(5)
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()