25 lines
786 B
HTML
25 lines
786 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Сравнение моделей</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Сравнение моделей</h1>
|
||
|
<form action="/compare_models" method="POST">
|
||
|
<button type="submit">Сравнить модели</button>
|
||
|
</form>
|
||
|
<br>
|
||
|
{% if result %}
|
||
|
<h2>Графики моделей</h2>
|
||
|
<div style="display: flex; justify-content: space-around;">
|
||
|
<div>
|
||
|
<img src="static/models_comparison.png" alt="График линейной регрессии">
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</body>
|
||
|
</html>
|