-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (112 loc) · 4.69 KB
/
index.html
File metadata and controls
117 lines (112 loc) · 4.69 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xiao Ye</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77d42a 3px solid;
text-align: center; /* Center-align the header content */
}
header a, header h1 {
color: #fff;
text-decoration: none;
}
.contact-links {
font-size: 14px; /* Smaller font size for the contact links */
}
nav {
text-align: center;
padding: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
.section {
padding: 20px 0;
}
.photo img {
max-width: 300px;
height: auto;
display: block;
margin: 20px auto;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Xiao Ye</h1>
<h2 class="contact-links">
<a href="mailto:xiaoye2@asu.edu">Email</a> |
<a href="https://github.com/Itok2000u">GitHub</a> |
<a href="https://www.linkedin.com/in/xiao-ye-6982581b4/">LinkedIn</a>
</h2>
<nav>
<a href="#about">About Me</a>
<a href="#experience">Experience</a>
<a href="#publication">Publication</a>
<a href="#research">Research Interest</a>
</nav>
</div>
</header>
<div class="container">
<!-- 照片部分 -->
<section class="section photo">
<img src="xiao.jpeg" alt="Xiao Ye Photo">
</section>
<!-- 关于我部分 -->
<section id="about" class="section">
<h2>About Me</h2>
<p>My name is Xiao Ye, a first-year CS PhD student at the Arizona State University, where I am working with <a href="http://xuanyu.me/">Prof. Xuanyu Ben Zhou</a> in <a href="https://arc-asu.github.io/">AI, Reasoning and Cognition (ARC) Lab</a>. Previously, I worked at Johns Hopkins University <a href="https://www.clsp.jhu.edu/">Center for Language and Speech Processing</a> advised by <a href="https://danielkhashabi.com/">Prof. Daniel Khashabi</a>. I am interested in
Natural Language Processing and Cognitive Psychology. </p>
</section>
<!-- 工作经验部分 -->
<section id="experience" class="section">
<h2>Experience</h2>
<ul>
<li><p><strong>Research Assistant,</strong><i> Arizona State University, Advisor: Prof. Xuanyu Ben Zhou (Aug. 2024 - Present)</i></p></li>
<li><p><strong>Graduate Research Assistant:</strong><i> Center for Language and Speech Processing, Johns Hopkins University, Advisor: Prof. Daniel Khashabi (Dec. 2022 - May. 2024)</i></p></li>
<li><p><strong>AI Engineer Intern:</strong> <i> HPC-AI Tech(Colossal AI) (May. 2022 - July. 2022)</i></p></li>
<li><p><strong>Undergraduate Research Assistant:</strong><i> Forward Data Lab, University of Illinois at Urbana-Champaign, Advisor: Prof. Kevin C.C Chang (June. 2021 - Dec. 2021)</i></p></li>
<li><p><strong>Undergraduate Research Assistant:</strong><i> Vision Lab, University of Illinois at Urbana-Champaign, Advisor: Prof. Simona Lleras Buetti (Aug. 2019 - Aug. 2021)</i></p></li>
</ul>
<!-- 继续添加其他工作经验 -->
</section>
<!-- 出版物部分 -->
<section id="publication" class="section">
<h2>Publications</h2>
<ul>
<li><p><a href="https://arxiv.org/abs/2402.12370">AnaloBench: Benchmarking the Identification of Abstract and Long-context Analogies</a> - Under Review</p></li>
</ul>
</section>
<!-- 研究兴趣部分 -->
<section id="research" class="section">
<h2>Research Interest</h2>
<p>My research interest lies at the intersection of Nautal Language Processing, and Cognitive Psychology, with a particular focus on analogical reasoning and model compression.</p>
</section>
</div>
</body>
</html>