21 lines
942 B
HTML
21 lines
942 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Model Drift Simulator</title>
|
|
<link rel="stylesheet" href="../shared.css">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<nav class="topline"><a href="../">All demos</a><a href="/demos.php">Website catalog</a></nav>
|
|
<section class="hero"><p class="kicker">Demo 08</p><h1>Model Drift and Performance Simulator</h1><p>MLOps playground: create drift, corrupt inputs, and retrain back to a healthier curve.</p></section>
|
|
<section class="panel">
|
|
<canvas id="drift-canvas" width="720" height="220"></canvas>
|
|
<div class="actions"><button id="drift-spike" type="button">Black Friday Spike</button><button id="drift-corrupt" type="button">Corrupt Inputs</button><button id="drift-retrain" type="button">Retrain Model</button></div>
|
|
<p id="drift-status" class="note"></p>
|
|
</section>
|
|
</main>
|
|
<script src="model-drift.js"></script>
|
|
</body>
|
|
</html>
|