nn-core/public/index.html

50 lines
1.4 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NUMEX — Neural Network Core</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app">
<!-- Arka plan canlı sinir ağı -->
<canvas id="neon-canvas" width="1920" height="1080"></canvas>
<!-- HUD üst bilgi çubuğu -->
<header id="hud">
<div class="brand">
<span class="logo-dot"></span>
<span class="brand-name">NUMEX<span class="ai">AI</span></span>
</div>
<div class="status">
<span class="status-dot"></span>
<span id="statusText">Neural Mesh Online</span>
<span class="stat-chip"><b id="epoch">0000</b> epoch</span>
<span class="stat-chip"><b id="pps">0.0K</b> p/s</span>
</div>
</header>
<!-- Panel: görselleştirme lejantı -->
<aside id="panel">
<h3>Core Visualizer</h3>
<ul>
<li><i class="lbl hot"></i> <span>Activations</span></li>
<li><i class="lbl cool"></i> <span>Weights</span></li>
<li><i class="lbl text"></i> <span>Token Flow</span></li>
</ul>
<div class="gauge">
<div class="gauge-fill" id="gaugeFill"></div>
</div>
<p id="gaugeLabel">Loading weights…</p>
</aside>
<!-- Alt grafik -->
<footer id="chart">
<canvas id="lossChart" width="520" height="90"></canvas>
</footer>
</div>
<script src="game.js"></script>
</body>
</html>