-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lego Figure Classification With Fine-tuned Resnet18 Model</title>
<meta charset="utf-8">
<script src="static/main.js" type="module"></script>
<link rel="stylesheet" href="styles.css" type="text/css"/>
</head>
<body>
<nav id="nav-bar">
<h1 id="web-title"><i>Lego Figure Classification</i></h1>
</nav>
<h2 class="model-output" id="modelOutput"></h2>
<h3 class="model-output-confidence" id="modelOutputConfidencess"></h3>
<div class="image-preview" id="imagePreview">
<img src="" alt="image preview" class="image-preview-image">
<span class="image-preview-default-text" id="image-preview-text">Image Preview Here</span>
</div>
<div id="button-and-input-container">
<label for="imagePreview" id="input-label">Choose Image To Classifiy</label>
<input type="file" name="imagePreview" id="image-input" accept=".png, .jpg, .jpeg">
<button type="submit" class="image-upload-button" id="imageUploadButton">Get Prediction</button>
</div>
<div></div>
</body>
</html>