-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (85 loc) · 2.86 KB
/
Copy pathindex.html
File metadata and controls
101 lines (85 loc) · 2.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontier AI for Health | Texas A&M University</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 40px 0;
border-bottom: 2px solid #500000;
}
h1 {
color: #500000;
}
.hero {
background: #f4f4f4;
padding: 30px;
border-radius: 8px;
margin: 20px 0;
}
.section {
margin: 40px 0;
}
.button {
display: inline-block;
background: #500000;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
footer {
text-align: center;
font-size: 0.9em;
margin-top: 50px;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Frontier AI for Medicine & Health</h1>
<p>Advancing Medical Intelligence through Optimization</p>
</header>
<section class="hero">
<h2>2026 AI for Healthcare Summit</h2>
<p>Join us at Texas A&M University for a two-day summit bringing together industry leaders, clinicians, and AI
researchers to explore the future of medical diagnostics and foundation models.</p>
<a href="#register" class="button">View Schedule & Registration</a>
</section>
<section class="section">
<h2>Featured Research: RADEO</h2>
<p>We are proud to introduce <strong>RADEO</strong> (A Radiology Omnimodal Foundation Model for Medical
Intelligence), our new foundation model built for clinical precision.</p>
<p><a href="https://huggingface.co/your-repo-link">Download Model Weights</a></p>
</section>
<section class="section">
<h2>Featured Research: RADEO-Net</h2>
<p>RADEO-Net is a respository that collects all medical imaging data on the internet for training our RADEO
model.</p>
<p><a href="radeonet.html">RADEO-Net</a></p>
</section>
<section class="section">
<h2>Event Details</h2>
<ul>
<li><strong>Date:</strong> Spring 2027</li>
<li><strong>Location:</strong> Texas A&M University, College Station, TX</li>
<li><strong>Focus:</strong> Frontier AI for Medicine and Health</li>
</ul>
</section>
<footer>
© 2026 Department of Computer Science and Engineering, Texas A&M University.
</footer>
</body>
</html>