-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.16 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flappy Bird AI</title>
<link href="https://fonts.googleapis.com/css2?family=Electrolize&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<style>
div#canvas {
float: left;
margin-right: 8px;
}
</style>
</head>
<body>
<div id="canvas"></div>
<h2 id="generation"></h2>
<h4 id="lastGenScore"></h4>
<h4 id="bestGenScore"></h4>
<h4 id="lastSoloScore"></h4>
<h4 id="bestSoloScore"></h4>
<script src="Scoreboard.js"></script>
<script src="geneticAlgorithm.js"></script>
<script src="NeuralNetwork.js"></script>
<script src="Gen.js"></script>
<script src="Bird.js"></script>
<script src="Pipe.js"></script>
<script src="main.js"></script>
<label for="slider">Simulation Speed (may cause lag if increased):</label>
</body>
</html>