-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
211 lines (188 loc) · 7.37 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
---
layout: default
---
<!-- ========== About ========== -->
<div class="docs-section" id="about">
<h4>About</h4>
<p>
I am a third-year Ph.D. student at <a href="https://alinlab.kaist.ac.kr/index.html">Algorithmic Intelligence Laboratory (ALIN-LAB)</a>, advised by <a href="https://alinlab.kaist.ac.kr/shin.html">Prof. Jinwoo Shin</a> at Korea Advanced Institute of Science and Technology (<a href="https://www.kaist.ac.kr/en/">KAIST</a>).
I received my B.S. in Chemistry (major), Computer Science (double major), and Mathmatics (double major) at KAIST in 2021.
</p>
<p>
My primary research interests lie in the area of machine learning for drug discovery.
Currently, my research focuses on molecular representation learning and molecule generation.
<!-- Here are some keywords:
<ul>
<li>
Q
</li>
<li>
R
</li>
<li>
Efficiency
</li>
<li>
Robustness
</li>
</ul> -->
</p>
</div>
<!-- ========== News ========== -->
<!-- <div class="docs-section" id="news">
<h4>News</h4>
<ul>
<li>
<b style="color:cadetblue">[Oct. 2022]</b>   
Our paper on Graph-Inducted Transformers (GIT) has been accepted to <b>EMNLP 2022</b>!
</li>
<li>
<b style="color:cadetblue">[Aug. 2022]</b>  
Started my Ph.D. journey at <b>Georgia Tech</b>!
</li>
</ul>
</div> -->
<!-- ========== PUBLICATIONS ========== -->
<div class="docs-section" id="publications">
<h4>Publications <span style="font-size:15px">(*: Equal contribution)</span></h4>
<div class="tab-content">
<div class="tab-pane active" id="papers-selected">
{% assign selected_papers = site.data.publications.papers | where: "selected", "y" %}
{% for paper in selected_papers %}
<div class="paper">
<div class="row">
<!-- <div class="four columns"> -->
<!-- <div class="figure"> -->
<!-- <img src="{{ paper.image }}" width="100%"> -->
<!-- </div> -->
<!-- </div> -->
<div class="twelve columns">
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
{% if paper.venue1 %}
<p><i>{{ paper.venue1 }}</i></p>
{% endif %}
{% if paper.venue2 %}
<p><i>{{ paper.venue2 }}</i></p>
{% endif %}
<div class="paper-buttons">
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf }}" target="_blank">Paper</a>
{% endif %}
{% if paper.project_page %}
<a class="button" href="{{ paper.project_page }}" target="_blank">Project</a>
{% endif %}
{% if paper.slides %}
<a class="button" href="{{ paper.slides | prepend: site.baseurl }}" target="_blank">Slides</a>
{% endif %}
{% if paper.poster %}
<a class="button" href="{{ paper.poster | prepend: site.baseurl }}" target="_blank">Poster</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code }}" target="_blank">Code</a>
{% endif %}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="tab-pane" id="papers-all">
{% for paper in site.data.publications.papers %}
<div class="paper">
<div class="row">
<!-- <div class="four columns"> -->
<!-- <div class="figure"> -->
<!-- <img src="{{ paper.image }}" width="100%"> -->
<!-- </div> -->
<!-- </div> -->
<div class="twelve columns">
<p class="title"><b>{{ paper.title }}</b></p>
<p>{{ paper.authors }}</p>
<p><i>{{ paper.venue }}</i></p>
<div class="paper-buttons">
{% if paper.paper_pdf %}
<a class="button" href="{{ paper.paper_pdf | prepend: site.baseurl }}" target="_blank">Paper</a>
{% endif %}
{% if paper.slides %}
<a class="button" href="{{ paper.slides | prepend: site.baseurl }}" target="_blank">Slides</a>
{% endif %}
{% if paper.poster %}
<a class="button" href="{{ paper.poster | prepend: site.baseurl }}" target="_blank">Poster</a>
{% endif %}
{% if paper.video %}
<a class="button" href="{{ paper.video }}" target="_blank">Video</a>
{% endif %}
{% if paper.code %}
<a class="button" href="{{ paper.code }}" target="_blank">Code</a>
{% endif %}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<!-- ========== Experience ========== -->
<div class="docs-section" id="education">
<h4>Education</h4>
<div class="paper">
<p class="title"><b>Korea Advanced Institute of Science and Technology (KAIST)<b style="float:right;">Sep. 2021 - Present</b></b></p>
<p>Ph.D. in Artificial Intelligence </p>
</div>
<div class="paper">
<p class="title"><b>Korea Advanced Institute of Science and Technology (KAIST)<b style="float:right;">Mar. 2016 - Aug. 2021</b></b></p>
<p>B.S. in Chemistry (major), Computer Science (double major), and Mathematics (double major) </p>
</div>
</div>
<!-- ========== Experience ========== -->
<!-- <div class="docs-section" id="experience">
<h4>Experience</h4>
<div class="paper">
<p class="title"><b>Winter Internship<b style="float:right;">Dec. 2019 - Feb. 2020</b></b></p>
<a href="https://www.skhynix.com">SK hynix</a>
<p></p>
</div>
</div> -->
<!-- ========== Honors & Awards ========== -->
<!-- <div class="docs-section" id="honors">
<h4>Honors & Awards</h4>
<div class="paper">
<p class="title"><b>xxx<b style="float:right;">Sep. 2021 - Feb. 2022</b></b></p>
<p class="title"><b>xxx</b></p>
<p>Award</p>
<p></p>
</div>
<div class="paper">
<p class="title"><b>xxx</b></p>
<p>1st prize</p>
<p></p>
</div>
</div> -->
<!-- ========== RESUME ========== -->
<!-- <div class="docs-section" id="resume">
<h4>Vitæ</h4> -->
<!-- <p>Full CV in <a href={{ "/assets/cv/CV.pdf" | prepend: site.baseurl }} target="_blank">PDF</a>.</p> -->
<!-- The Timeline -->
<!-- <ul class="timeline">
{% for exp in site.data.experience.experiences %}
<li>
{% if exp.category == "work" %}
<div class="direction-l">
{% else %}
<div class="direction-r">
{% endif %}
<div class="flag-wrapper">
<span class="flag">{{ exp.place }}</span>
<span class="time-wrapper"><span class="time">{{ exp.time }}</span></span>
</div>
<div class="desc"><b>{{ exp.title }}</b> <br/> {{ exp.subtitle }}</div>
</div>
</li>
{% endfor %}
</ul>
</div> -->
</div>