-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmove-analyzer.html
24 lines (24 loc) · 952 Bytes
/
move-analyzer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Move Analyzer</title>
</head>
<body>
<h2>Move Analyzer</h2>
<p>On this page, you can find out how many times an LLM missed an opportunity to win or to block the opponent by analyzing the json files that are generated by the game simulation software. Either select a single game json file or select an all_moves json file to analyze.</p>
<br><br>
<label>Select a single game file:</label><input type="file" id="fileInput">
<br><br>
<button onclick="analyzeMoves()">Analyze Moves</button>
<br><br>
<div id="results"></div>
<br><br>
<!--Bulk RUN-->
<label>Select an all_moves game file:</label><input type="file" id="bulkFileInput" multiple>
<br><br>
<button onclick="analyzeBulkRunMoves()">Analyze Bulk Run Moves</button>
<div id="bulkResults"></div>
<script src="move-analyzer.js"></script>
</body>
</html>