Spaces:
Sleeping
Sleeping
<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> |