-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 2.96 KB
/
index.html
File metadata and controls
71 lines (68 loc) · 2.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon-32.png" sizes="32x32" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Yifei Bao — AI/ML Engineer at Boston University. Chat with an AI assistant to learn about my background, projects, and experience." />
<meta name="author" content="Yifei Bao" />
<title>Yifei Bao · AI/ML Engineer</title>
<!-- Open Graph / Social sharing -->
<meta property="og:type" content="profile" />
<meta property="og:title" content="Yifei Bao · AI/ML Engineer" />
<meta property="og:description" content="Chat with an AI to learn about Yifei's background, projects, and experience." />
<meta property="og:image" content="https://spectual.github.io/og-image.webp" />
<meta property="og:url" content="https://spectual.github.io" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Yifei Bao · AI/ML Engineer" />
<meta name="twitter:description" content="Chat with an AI to learn about Yifei's background, projects, and experience." />
<meta name="twitter:image" content="https://spectual.github.io/og-image.webp" />
<!-- Schema.org Person structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Yifei Bao",
"jobTitle": "AI / ML Engineer",
"email": "baoyifei@bu.edu",
"url": "https://spectual.github.io",
"image": "https://spectual.github.io/avatar.webp",
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Boston University"
},
{
"@type": "CollegeOrUniversity",
"name": "Nanjing Normal University"
}
],
"sameAs": [
"https://linkedin.com/in/yifei-bao-mscs",
"https://github.com/spectual"
],
"knowsAbout": ["Machine Learning", "Computer Vision", "LLM", "RAG", "PyTorch", "Python"]
}
</script>
<!-- GitHub Pages SPA: restore path from redirect query params set by 404.html -->
<script>
(function () {
var params = new URLSearchParams(window.location.search);
var p = params.get("p");
if (p !== null) {
var q = params.get("q");
var url = "/" + decodeURIComponent(p) + (q ? "?" + decodeURIComponent(q) : "") + window.location.hash;
window.history.replaceState(null, "", url);
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>