-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 835 Bytes
/
index.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<script src='./numeric.js'></script>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.bundle.min.js'></script>
</script>
<script type='module'>
import './main.js'
import {Connection} from './connection.js'
import { Network } from "./Network.js";
import {test} from './test.js'
import {getBatch} from './generateTraingingData.js'
window.getBatch = getBatch
//setTimeout(draw, 100)
window.addEventListener('DOMContentLoaded', changedInput, false);
</script>
<body>
<div>
<h2>
Neural network Nim
</h2>
Cody Smith. 2019
</div>
<hr>
<br>
<div></div>
<div style='font-size: xx-large;'>result: <span id='result'></span></div>
<div id="explanation"></div>
<canvas id="myChart" width="800" height="400"></canvas>
<br><br><br>
<div id='drawing'></div>
<br><br><br>
<br><br><br>
<br><br><br>
</body>