-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 961 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cartpole example app</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="js/ndarray.js"></script>
<script type="text/javascript" src="js/weblearn.js"></script>
<script type="text/javascript" src="js/weblearn-dqn.js"></script>
<script type="text/javascript" src="js/d3.js"></script>
<script type="text/javascript" src="js/Cartpole.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div style="display: flex; justify-content: center; margin-top: 100px">
<svg id="cartpole-drawing"></svg>
</div>
<div style="margin-left: 30%; margin-top: 5%">
<p id="rewardP">Reward: -</p>
<p id="doneP">Done: -</p>
<button id="reset-button">reset</button>
</div>
</body>
</html>