|
a |
|
b/index.html |
|
|
1 |
<!DOCTYPE html> |
|
|
2 |
<html> |
|
|
3 |
<head> |
|
|
4 |
<title></title> |
|
|
5 |
<link rel="stylesheet" href="{{ url_for('static', filename='css/style-prediction.css') }}"> |
|
|
6 |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" |
|
|
7 |
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> |
|
|
8 |
</head> |
|
|
9 |
|
|
|
10 |
<body> |
|
|
11 |
|
|
|
12 |
<div class="content"> |
|
|
13 |
<div class="center"> |
|
|
14 |
<h1>Prediction: {{label}}</h1> |
|
|
15 |
<!-- <br> Probability: {{accuracy}}% --> |
|
|
16 |
</div> |
|
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
<div class="center"> |
|
|
21 |
<img src="{{ url_for('send_file', filename=image_file_name)}}"> |
|
|
22 |
</div> |
|
|
23 |
|
|
|
24 |
<div class="center"> |
|
|
25 |
<a href="/" class="btn btn-secondary btn-lg">Back to Home</a> |
|
|
26 |
</div> |
|
|
27 |
|
|
|
28 |
</div> |
|
|
29 |
|
|
|
30 |
</body> |
|
|
31 |
</html> |