39 lines
897 B
HTML
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>
|