IIS_2023_1/volkov_rafael_lab_1/templates/index.html
2023-12-05 12:27:16 +04:00

39 lines
897 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Model Comparison</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
.container {
display: flex;
}
</style>
</head>
<body>
<h1>Model Comparison</h1>
{% if result %}
<div class="container">
<div class="model-container">
<img src="{{ url_for('static', filename='models_comparison.png') }}" alt="Perceptron">
</div>
<div class="model-container">
</div>
<div class="model-container">
</div>
</div>
{% endif %}
<form action="/compare_models" method="post">
<button type="submit">Compare Models</button>
</form>
</body>
</html>