-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.55 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunlab - AI for Healthcare Research</title>
<link rel="stylesheet" href="css/landing.css">
</head>
<body>
<div class="container">
<header>
<h1>Sunlab @ UIUC</h1>
<p class="tagline">AI for Healthcare Research</p>
</header>
<main>
<div class="resources">
<div class="resource-card pyhealth">
<div class="card-icon">🔬</div>
<h2>PyHealth</h2>
<p class="card-description">The Python Library for Healthcare AI. Build, test, and deploy healthcare machine learning models with ease.</p>
<a href="https://pyhealth.readthedocs.io/en/latest/index.html" target="_blank" class="card-button">View Documentation →</a>
</div>
<div class="resource-card textbook">
<div class="card-icon">📚</div>
<h2>Practical Deep Learning for Healthcare</h2>
<p class="card-description">A comprehensive textbook bridging cutting-edge AI research and real-world clinical practice.</p>
<a href="/practical-dl4h" class="card-button">Read Textbook →</a>
</div>
</div>
</main>
<footer>
<p><a href="https://www.sunlab.org" target="_blank" rel="noopener noreferrer">Sunlab@UIUC</a></p>
</footer>
</div>
</body>
</html>