-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 1.4 KB
/
index.html
File metadata and controls
46 lines (38 loc) · 1.4 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Data Visualization for Model</title>
<script src="js/jquery.min.js"></script>
<script src="js/d3.v6.min.js"></script>
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="title-container">Model Result Visualization</div>
<div id="slider1-container">
<label for="slider1">Learning Rate</label>
<input type="range" id="slider1">
<span id="slider1-value"></span>
</div>
<div id="slider2-container">
<label for="slider2">Batch Size</label>
<input type="range" id="slider2">
<span id="slider2-value"></span>
</div>
<div id='chart-container'>
<div id='chart-left'></div>
<div id='chart-right'></div>
<div id='tooltip'></div>
</div>
<div id="choice-container">
<label for="choice1">Task name</label>
<select id="choice1">
<option value="1">Logistic Regression</option>
<option value="2">LeNet</option>
<option value="3">ResNet</option>
</select>
</div>
<div id="tooltip" style="position: absolute; visibility: hidden; background-color: white; padding: 10px; border: 1px solid #000;"></div>
<script src="js/data.js"></script>
<script src="js/main.js"></script>
</body>