-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 1.76 KB
/
index.html
File metadata and controls
65 lines (62 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ML Playground</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
}
h1 {
color: #333;
border-bottom: 2px solid #007acc;
padding-bottom: 0.5rem;
}
.demo-list {
list-style: none;
padding: 0;
}
.demo-list li {
margin: 1rem 0;
padding: 1rem;
border: 1px solid #e1e4e8;
border-radius: 6px;
background: #f6f8fa;
}
.demo-list a {
color: #007acc;
text-decoration: none;
font-weight: 500;
}
.demo-list a:hover {
text-decoration: underline;
}
.description {
color: #666;
margin-top: 0.5rem;
}
</style>
</head>
<body>
<h1>ML Playground</h1>
<p>A repository for HTML-based machine learning visualizations and interactive demos.</p>
<h2>Available Demos</h2>
<ul class="demo-list">
<li>
<a href="visualizations/pac-man/packman.html">Pac-Man Game</a>
<div class="description">Interactive Pac-Man game demo</div>
</li>
</ul>
<h2>Getting Started</h2>
<p>Click on any demo above to run it directly in your browser.</p>
<h2>Local Development</h2>
<p>To run demos locally:</p>
<pre><code>python -m http.server 8000
# Then visit: http://localhost:8000</code></pre>
</body>
</html>