File size: 696 Bytes
4c1a791
 
 
 
 
 
244431c
4c1a791
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Train Models - MNIST</title>
    <link rel="stylesheet" href="{{ url_for('static', path='/css/style.css') }}">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
    <div class="container">
        <h1>Train Your Model</h1>
        <div class="button-container">
            <a href="/train/single" class="btn">Train Single Model</a>
            <a href="/train/compare" class="btn">Compare Models</a>
        </div>
    </div>
</body>
</html>