Files
WebGPU-Neural-Network-Trainer/index.html

23 lines
837 B
HTML
Raw Normal View History

2025-11-19 10:42:46 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebGPU MNIST Training (Batch 64)</title>
<style>
body { font-family: sans-serif; background:#111; color:#eee; }
#preview { display:flex; gap:12px; margin-top:1rem; flex-wrap:wrap; }
.item { text-align:center; font-size:14px; }
canvas { image-rendering: pixelated; background:#000; border:1px solid #555; }
button { font-size:16px; padding:8px 14px; cursor:pointer; }
#log { white-space:pre; font-size:14px; max-height:240px; overflow-y:auto; background:#222; padding:8px; }
</style>
</head>
<body>
<h2>WebGPU MNIST Training — Batch 64</h2>
<button id="trainBtn">Train</button>
<div id="log"></div>
<div id="preview"></div>
<script type="module" src="./training.js"></script>
</body>
</html>