32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "head.html" %}
|
|
</head>
|
|
<body>
|
|
{% include "navbar.html" %}
|
|
<main class="content px-3 py-4">
|
|
<div class="container-fluid">
|
|
<div class="mb-3">
|
|
<div class="col-md-3 offset-lg-2">
|
|
<h3 class="fw-bold fs-4 my-3">Generate Dataset
|
|
</h3>
|
|
<img src="{{ url_for('vidfeed_dataset', nbr=prs) }}" width="100%" class="img-thumbnail">
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
<div class="col-md-3 offset-lg-2">
|
|
<a class="btn btn-warning btn-lg" href="{{ url_for('train_classifier', nbr=prs) }}"> Training </a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
|
|
crossorigin="anonymous"></script>
|
|
|
|
|
|
</body>
|
|
</html> |