forked from lightvector/KataGo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevalsgf.py
More file actions
183 lines (152 loc) · 5.65 KB
/
Copy pathevalsgf.py
File metadata and controls
183 lines (152 loc) · 5.65 KB
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
#!/usr/bin/python3
import sys
import os
import argparse
import traceback
import random
import math
import time
import re
import logging
import colorsys
import json
import tensorflow as tf
import numpy as np
import data
from board import Board
from model import Model, Target_vars, Metrics
import common
description = """
Evaluate raw neural net output directly on a position in an sgf, mostly a low-level debugging tool
"""
parser = argparse.ArgumentParser(description=description)
common.add_model_load_args(parser)
parser.add_argument('-name-scope', help='Name scope for model variables', required=False)
parser.add_argument('-sgf', help="SGF file to evaluate", required=True)
parser.add_argument('-move', help="Move number to evaluate, 0-indexed", required=True)
parser.add_argument('-debug', help="Debug sandbox", action="store_true", required=False)
args = vars(parser.parse_args())
(model_variables_prefix, model_config_json) = common.load_model_paths(args)
name_scope = args["name_scope"]
sgf_file = args["sgf"]
movenum = int(args["move"])
debug = args["debug"]
np.set_printoptions(linewidth=150)
# Model ----------------------------------------------------------------
two_over_pi = 0.63661977236758134308
pos_len = 19
with open(model_config_json) as f:
model_config = json.load(f)
if name_scope is not None:
with tf.name_scope(name_scope):
model = Model(model_config,pos_len,{})
else:
model = Model(model_config,pos_len,{})
policy_output = tf.nn.softmax(model.policy_output[:,:,0])
value_output = tf.nn.softmax(model.value_output)
scorevalue_output = two_over_pi*tf.atan(model.miscvalues_output[:,0])
scorebelief_output = tf.nn.softmax(model.scorebelief_output)
ownership_output = tf.tanh(model.ownership_output)
# Moves ----------------------------------------------------------------
def fetch_output(session, board, boards, moves, use_history_prop, rules, fetches):
bin_input_data = np.zeros(shape=[1]+model.bin_input_shape, dtype=np.float32)
global_input_data = np.zeros(shape=[1]+model.global_input_shape, dtype=np.float32)
pla = board.pla
opp = Board.get_opp(pla)
move_idx = len(moves)
model.fill_row_features(board,pla,opp,boards,moves,move_idx,rules,bin_input_data,global_input_data,use_history_prop=use_history_prop,idx=0)
outputs = session.run(fetches, feed_dict={
model.bin_inputs: bin_input_data,
model.global_inputs: global_input_data,
model.symmetries: [False,False,False],
model.is_training: False,
model.include_history: [[1.0,1.0,1.0,1.0,1.0]]
})
return [output[0] for output in outputs]
def get_policy_output(session, board, boards, moves, use_history_prop, rank_one_hot):
return fetch_output(session,board,boards,moves,use_history_prop,rank_one_hot,[policy_output])
def get_moves_and_probs_of_policy(policy):
moves_and_probs = []
for i in range(len(policy)):
move = model.tensor_pos_to_loc(i,board)
if i == len(policy)-1:
moves_and_probs.append((Board.PASS_LOC,policy[i]))
elif board.would_be_legal(pla,move) and not board.is_simple_eye(pla,move):
moves_and_probs.append((move,policy[i]))
return moves_and_probs
# Basic parsing --------------------------------------------------------
colstr = 'ABCDEFGHJKLMNOPQRST'
def str_coord(loc,board):
if loc == Board.PASS_LOC:
return 'pass'
x = board.loc_x(loc)
y = board.loc_y(loc)
return '%c%d' % (colstr[x], board.size - y)
(metadata,setups,sgfmoves,rules) = data.load_sgf_moves_exn(sgf_file)
board_size = metadata.size
board = Board(size=board_size)
moves = []
boards = [board.copy()]
def setstone(pla,loc):
board.play(pla,loc)
moves.clear()
boards.clear()
boards.append(board.copy())
def play(pla,loc):
board.play(pla,loc)
moves.append((pla,loc))
boards.append(board.copy())
for (pla,loc) in setups:
setstone(pla,loc)
for i in range(movenum):
(pla,loc) = sgfmoves[i]
play(pla,loc)
print(board.to_string())
saver = tf.train.Saver(
max_to_keep = 10000,
save_relative_paths = True,
)
with tf.Session() as session:
if not debug:
saver.restore(session, model_variables_prefix)
(policy,value,scorevalue,scorebelief,ownership) = fetch_output(session, board, boards, moves, 1.0, rules, (
policy_output,
value_output,
scorevalue_output,
scorebelief_output,
ownership_output
))
moves_and_probs = get_moves_and_probs_of_policy(policy)
moves_and_probs = sorted(moves_and_probs, key=lambda moveandprob: moveandprob[1], reverse=True)
ownership = ownership.reshape([model.pos_len * model.pos_len])
print("Value: " + str(value))
print("ScoreValue: " + str(scorevalue))
print("Policy: ")
for i in range(max(len(moves_and_probs),40)):
(move,prob) = moves_and_probs[i]
print("%s %4.1f%%" % (str_coord(move,board),prob*100))
print("Ownership: ")
for y in range(board_size):
for x in range(board_size):
print("%+5.0f " % (ownership[y*pos_len+x] * 1000),end="")
print()
print("ScoreBelief: ")
for i in range(17,-1,-1):
print("%+6.1f" % (-(i*20+0.5)),end="")
for j in range(20):
idx = 360-(i*20+j)
print(" %5.0f" % (scorebelief[idx] * 10000),end="")
print()
for i in range(18):
print("%+6.1f" % ((i*20+0.5)),end="")
for j in range(20):
idx = 361+(i*20+j)
print(" %5.0f" % (scorebelief[idx] * 10000),end="")
print()
else:
[transformed_input] = fetch_output(session, board, boards, moves[:movenum], use_history_prop=1.0, rank_one_hot = play_rank_one_hot, fetches = [model.transformed_input])
transformed_input = np.array(transformed_input)
assert(len(transformed_input.shape) == 3)
for i in range(transformed_input.shape[2]):
print(i)
print(transformed_input[:,:,i])