-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visualizing Explainable AI with p5.js and ml5.js</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200|Oswald:300" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css" rel="stylesheet" />
<link rel="stylesheet" href="src/styles/stylesheet.css">
</head>
<body>
<div class="container">
<div class="title animated fadeInLeft slow">
<h1>Explainable AI</h1>
<h2>
<div>Interactive Web-Based</div>
<div>Learning for XAI</div>
</h2>
</div>
<div id="p5sketch"></div>
<div class="txt animated fadeInRight slow">
<p>Powered by <strong>P5.js</strong> and <strong>ml5.js</strong>, this website features a collection of interactive visualizations showcasing key concepts in
Machine Learning and Artificial Intelligence. The goal is to make these complex topics more accessible and understandable to users</p>
<div class="txt animated fadeInRight slow">
<a class="custom-link" href="src/subsites/Regression/index.html"><strong>Regression Using Gradient Descent</strong></a>
<div class="txt animated fadeInRight slow">
<a class="custom-link" href="src/subsites/NeuralNetwork-Visualization/index.html"><strong>Neural Network Visualization</strong></a>
<div class="txt animated fadeInRight slow">
<a class="custom-link" href="src/subsites/Bias-and-Noise/index.html"><strong>Bias and Noise in Data</strong></a>
</div>
</div>
</div>
</div>
<!-- p5.js -->
<script src="src/libraries/p5.min.js"></script>
<script src="src/javascript/app.js"></script>
</body>
</html>