File size: 1,135 Bytes
475d366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!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>