Abeshith's picture
Add web UI with forms
475d366
<!DOCTYPE html>
<html>
<head>
<title>AutoML MLOps</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<nav>
<h1>AutoML MLOps Pipeline</h1>
<a href="/">Home</a>
<a href="/ui/predict">Predict</a>
<a href="/ui/health">Status</a>
<a href="/docs">API Docs</a>
</nav>
<div class="container">
<h2>Heart Disease Prediction System</h2>
<p>Welcome to the AutoML-powered heart disease prediction system.</p>
<div class="card">
<h3>Quick Actions</h3>
<div class="actions">
<a href="/ui/predict" class="btn">Make Prediction</a>
<a href="/ui/health" class="btn">Check Status</a>
<a href="/docs" class="btn">View API</a>
</div>
</div>
<div class="card">
<h3>System Information</h3>
<p><strong>Model:</strong> AutoGluon WeightedEnsemble</p>
<p><strong>Accuracy:</strong> 88.74%</p>
<p><strong>Features:</strong> 14 input features</p>
</div>
</div>
</body>
</html>