-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 923 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This Website is Learning</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-webgpu/dist/tf-backend-webgpu.js"></script>
<!-- <script type="module" src="./scripts/set_backend.js"></script> -->
<script type="module" src="./scripts/main.js" defer></script>
</head>
<body>
<div id="controls">
<label for="simulation-speed-slider" id="simulation-speed-text" style="min-width: 75px;"></label>
<input type="range" id="simulation-speed-slider" min="1" max="100" step="1" value="20">
</div>
<canvas id="main-window"></canvas>
</body>
</html>
<!-- npx http-server . -o -p 9999 -->