forked from jjmmwon/ProjectionEnsemble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
177 lines (173 loc) · 8.36 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projection Ensemble</title>
</head>
<body class="bg-light d-flex flex-column">
<header class="px-3">
<div class="navbar-brand fw-bold px-3 py-1" style="font-size: 22px">
Projection Ensemble
</div>
</header>
<main class="container flex-fill px-3">
<div class="row g-2" style="height: 95%">
<div class="col-2">
<div
class="sidebar d-flex flex-column"
style="height: 100%"
>
<div
class="projectionGeneration bg-white d-flex flex-column rounded-3 mb-1 px-3"
>
<div
class="config-header d-flex justify-content-between pt-2 pb-1"
>
<div class="fw-bold section-title">
Projection Set Generation Tab
</div>
</div>
<div class="config-section">
<div
class="d-flex py-1 align-items-center justify-content-between"
>
<div class="fw-bold">Data</div>
<div>
<select
id="dataTitle"
class="form-select py-1"
aria-label="Default select example"
>
<option
selected
value="mnist_50000"
>
MNIST (50,000 rows)
</option>
<option value="fashion-mnist">
Fashion-MNIST (70,000 rows)
</option>
<option value="mnist">
MNIST (60,000 rows)
</option>
<option value="mnist_20000">
MNIST (20,000 rows)
</option>
</select>
</div>
</div>
<div
class="d-flex py-1 align-items-center justify-content-between"
>
<div class="fw-bold">Method</div>
<div>
<select
id="method"
class="form-select py-1"
aria-label="Default select example"
disabled
>
<option selected value="tsne10">
t-SNE (10 projections)
</option>
<option value="umap10">
UMAP (10 projections)
</option>
</select>
</div>
</div>
<div
class="d-flex pt-1 pb-2 justify-content-between"
>
<button
class="btn btn-primary fw-bold"
id="generateBtn"
>
<span>Generate</span>
</button>
</div>
</div>
</div>
<div class="hpram-section bg-white mb-1 px-3 rounded-3">
<div class="fw-bold section-title pt-2 pb-1">
Hyperparameter View
</div>
<div class="hpram d-none">
<div
class="d-flex justify-content-between align-items-center"
>
<div class="rangeValue" id="kRangeValue">
13
</div>
</div>
<div
class="d-flex justify-content-between align-items-center pb-2"
>
<div
class="rangeValue fw-bold"
id="msRangeValue"
>
7
</div>
</div>
</div>
<div id="hpramView"></div>
</div>
<div
class="fsView-section bg-white px-3 py-2 rounded-3"
>
<div class="fw-bold section-title pb-2">
Class-FS Relationship View
</div>
<div id="fsView"></div>
</div>
</div>
</div>
<div class="col-10">
<div
class="main-section d-flex flex-column px-3 py-2 rounded-3 bg-white"
style="height: 100%"
>
<div class="fw-bold section-title">Ensemble View</div>
<div class="modeSelecotr py-2 d-flex">
<div class="dual pe-1">
<button
class="btn btn-primary"
id="modeBtns"
value="dualMode"
>
<span class="fw-bold">Dual Mode</span>
</button>
</div>
<div class="classOnly">
<button
class="btn btn-outline-primary"
id="modeBtns"
value="classMode"
>
<span class="fw-bold">Class Mode</span>
</button>
</div>
<div class="fsOnly ps-1">
<button
class="btn btn-outline-primary"
id="modeBtns"
value="fsMode"
>
<span class="fw-bold">FS Mode</span>
</button>
</div>
</div>
<div></div>
<div
class="scatterplot-section d-flex flex-wrap text-center"
></div>
</div>
</div>
</div>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>