-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (164 loc) · 6.15 KB
/
index.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
title: Profile
---
<section class="bg-white" id="intro">
<div class="container">
<div class="row ">
<div class="col-md-3">
<h2 class="fs-24 text-uppercase letter-spacing">About</h2>
</div>
<div class="col-lg-7">
<p class="fs-18">
I'm skillful and passionate in developing new innovations and real-world solutions for parallel computing applications in machine learning and 3D graphics.
Currently, I'm a ML compiler engineer who works on accelerating and optimizing GenAI models on cutting-edge ML chips. Previously,
I completed my Master of Engineering in EECS at UC Berkeley, where I worked on large-scale scene reconstructions, supervised by Prof. Avideh Zakhor, and
I obtained my Bachelor of Science degree at U of Toronto, with a focus on artificial intelligence and computer vision.
</p>
<a href="assets/cv.pdf" class="btn btn-md btn-rounded btn-green mt-2 ml-3">Resume/CV</a>
</div>
</div>
</div>
</section>
<section class="bg-white pt-0" id="intro">
<div class="container">
<div class="row align-items-center">
<div class="col-md-3">
<h2 class="fs-24 text-uppercase letter-spacing">Education</h2>
</div>
<div class="col-md-9">
<div class="row gutter-1">
{% for edu in site.data.education %}
<div class="col-6">
<div class="bordered p-2 p-md-4">
<h5 class="d-block text-green mb-0">{{ edu.degree }}</h5>
<span class="d-block text-green mb-3">{{ edu.program }} {% if edu.gpa %}(GPA {{ edu.gpa }}){% endif
%}</span>
<h6 class="fs-18 mb-0">{{ edu.school }}</h6>
<span class="text-muted">{{ edu.time }}</span>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>
<div class="bg-gray text-white component-example">
<div class="container">
<div class="row gutter-4">
<div class="col-md-12" data-aos="fade-up" data-aos-delay="100">
<h2 class="fs-24 text-uppercase letter-spacing">Featured Experiences</h2>
</div>
<div class="col-md-12">
<div class="accordion-group" data-accordion-group data-aos="fade-up" data-aos-delay="100">
{% for r in site.data.experience %}
<div class="accordion" data-accordion>
<div class="accordion-control" data-control>
<h5 class="fs-16 letter-spacing"><b>{{ r.position }}</b></h5>
<p>Supervised by
{% if r.supervisor %}
{% for s in r.supervisor %}
{% if s.link %}
<a href="{{ s.link }}">{{ s.name }}</a>
{% else %}
{{ s.name }}
{% endif %}
{% if forloop.last == false %}
,
{% endif %}
{% endfor %}
{% endif %}
<br>
{% if r.link %}
<a href="{{ r.link }}">{{ r.affiliation }}</a>
{% else %}
{{ r.affiliation }}
{% endif %}
</p>
<p style="text-align: right; margin-right: 10px">{{ r.time }}</p>
</div>
<div class="accordion-content" data-content>
<div class="accordion-content-wrapper">
<dl class="text-secondary">
{% for duty in r.workduty %}
<dd>{{ duty }}</dd>
{% endfor %}
</dl>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<section class="bg-white" id="pub">
<div class="container">
<div class="row">
<div class="col-md-3">
<h2 class="fs-24 text-uppercase letter-spacing">Publications</h2>
</div>
<div class="col-md-9">
{% for paper in site.data.publications%}
<div class="row justify-content-between align-items-center">
<div class="col-md-4">
{% if paper.img %}
<img src="{{ paper.img }}">
{% endif %}
</div>
<div class="col-md-8">
<h5>{{ paper.title }}</h5>
<p class="lead">
{% for author in paper.authors %}
{% if author.link %}
<a href="{{ author.link }}">{{ author.name }}</a>
{% else %}
{{ author.name }}
{% endif %}
{% if forloop.last == false %}, {% endif %}
{% endfor %}
<br>
<i>{{ paper.conference }}</i>
</p>
<p>
{% if paper.pdf %}
<a class="btn-sm btn btn-green" href="{{ paper.pdf }}">
Paper
<span class="fs-20 iconify" data-icon="ant-design:file-pdf-outlined"></span>
</a>
{% else %}
<a class="btn-secondary btn-sm btn disabled">
Coming soon
<span class="fs-20 iconify" data-icon="ant-design:file-pdf-outlined"></span>
</a>
{% endif %}
{% if paper.page %}
<a class="btn-sm btn btn-green" href="{{ paper.page }}">
Project
<span class="fs-20 iconify" data-icon="ant-design:paper-clip-outlined"></span>
</a>
{% endif %}
{% if paper.code %}
<a class="btn-sm btn btn-green" href="{{ paper.code }}">
Code
<span class="fs-20 iconify" data-icon="ant-design:github-filled"></span>
</a>
{% endif %}
{% if paper.video %}
<a class="btn-sm btn btn-green" href="{{ paper.video }}">
Video
<span class="fs-20 iconify" data-icon="ant-design:youtube-filled"></span>
</a>
{% endif %}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>