-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nested Model for AI Design and Validation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Nested Model for AI Design and Validation</h1>
<div class="layer layer-1" data-layer="1">
<button class="layer-button">Regulations</button>
<div class="layer layer-2" data-layer="2">
<button class="layer-button">Domain</button>
<div class="layer layer-3" data-layer="3">
<button class="layer-button">Data</button>
<div class="layer layer-4" data-layer="4">
<button class="layer-button">Model</button>
<div class="layer layer-5" data-layer="5">
<button class="layer-button">Predictions</button>
</div>
</div>
</div>
</div>
</div>
<div id="questionsContainer">
<h2>Select Questions</h2>
<div id="questionsBox" class="checkbox-list"></div>
</div>
<div id="methodologies" class="methodology-box">
<h2>Methodologies</h2>
<ul id="methodologyList"></ul>
</div>
<div class="copyright">
<p>© 2024 Akshat Dubey</p>
<p>Research Paper: <a href="https://doi.org/10.1016/j.isci.2024.110603" target="_blank">Dubey, Akshat, Zewen Yang, and Georges Hattab. "A Nested Model for AI Design and Validation." Cell Press iScience (2024).</a></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>