-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
241 lines (210 loc) · 11.7 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!-- By Kayo Yin.
Built on https://startbootstrap.com/theme/grayscale.
Copyright Kayo Yin 2021.
All Rights Reserved.
Do not copy or distribute without permission of the author. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Jongin Kim</title>
<!-- <link rel="icon" type="image/x-icon" href="assets/totoro.gif" /> -->
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<script language="javascript">
function show(elem) {
var x = document.getElementById(elem);
if (x.style.display === "block") { x.style.display = "none"; }
else { x.style.display = "block"; }
}
</script>
<base target="_blank">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container px-4 px-lg-5">
<a class="navbar-brand" href="#page-top" target="_self">Jongin Kim</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#about" target="_self">About</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="#research" target="_self">Research</a></li> -->
<li class="nav-item"><a class="nav-link" href="#pubs" target="_self">Publications</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="#talks" target="_self">Talks</a></li> -->
<!-- <li class="nav-item"><a class="nav-link" href="#awards" target="_self">Awards</a></li> -->
<!-- <li class="nav-link disabled">|</li> -->
<!-- <li class="nav-item"><a class="nav-link" href="media.html" target="_self">Not Research</a></li> -->
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<div class="container d-flex align-items-center justify-content-center">
<div class="d-flex justify-content-center">
<div class="row">
<!-- Left Col -->
<div class="smallcol">
<section class="about-section text-center" id="about">
<!-- Photo & Name -->
<div class="text-center">
<!-- Photo -->
<script type="text/javascript">
ImageArray = new Array();
ImageArray[0] = 'assets/img/Jongin.jpg';
function getRandomImage() {
var num = Math.floor(Math.random() * 1);
var img = ImageArray[num];
return ('<img src="' + img + '" width="250px">')
}
document.write(getRandomImage());
</script>
<br>
<!-- Under Photo -->
<h3 class="text-body mx-auto mt-2">Jongin Kim</h3>
<h5>PhD in Computer Science, Boston University</h5>
<!-- <h5>Research Assistant at Deeptext Lab</h5> -->
<!-- 今日は、かよと申します <br> -->
<!-- 你好,我是殷綺妤</h3> -->
<!-- <tt>[kajo iɴ] </tt><br> -->
<!-- <tt>she/her </tt><br> -->
<!-- <tt>[email protected]</tt> -->
<!-- <br> -->
<a href="assets/CV_JonginKim_3.pdf"><tt>Curriculum Vitae</tt></a> <br>
<!-- <a href="https://scholar.google.com/citations?user=Wc8oLVwAAAAJ&hl=en"><img src="assets/img/scholar.png" width="30" height="30"></a> -->
<!-- <a href="https://twitter.com/kayo_yin" title="Twitter"><img src="assets/img/twitter.png" width="30" height="30"></a> -->
<!-- <a href="https://www.linkedin.com/in/kayoyin/" title="Linkedin"><img src="assets/img/linkedin.png" width="30" height="30"></a> -->
<!-- <a href="https://github.com/kayoyin" title="Github"><img src="assets/img/github.png" width="30" height="30"></a> -->
<!-- <a href="https://medium.com/@kayo.yin" title="Medium"><img src="assets/img/medium.png" width="30" height="30"></a> <br> <br> -->
</div>
</section>
</div>
<!-- Right Col -->
<div class="bigcol">
<section class="about-section" id="about">
<div class="text-start">
<h1>Jongin Kim</h1>
I am a first-year PhD student in Computer Science at Boston University, where I am advised by Prof. Derry Wijaya.<br><br>
My research interest is Multilingual/Crosslingual NLP.<br>
My goal is to develop NLP systems that work well across different languages, so that langauge technologies are easily accessible to diverse and/or disadvantaged users who may need them most.<br><br>
I have done some <a href='#research' target="_self">research</a> towards this research direction. (<a href='#pubs' target="_self">publications</a>)<br>
Also, I plan to further <a href='#researchDirection' target="_self">broaden my research topics</a> in the future while I pursue my Ph.D. !
</section>
<section class="about-section" id="pubs">
<div class="text-start">
<h1>Publications</h1>
<h4>2021</h4>
<ul class="clist">
<li>
<a href="https://aclanthology.org/2021.emnlp-main.405/">Analysis of Zero-Shot Crosslingual Learning between English and Korean
for Named Entity Recognition</a>
<br>
<b>Jongin Kim</b>, Nayoung Choi, Seunghyun S. Lim, Jungwhan Kim, Soojin Chung, Hyunsoo Woo, Min Song, and Jinho D. Choi
<br>
<i>In Proceedings of the EMNLP Workshop on Multilingual Representation Learning (MRL), 2021</i>
<br>
<!-- <br><button type="button" class="badge badge-abs" href="javascript:void(0)" onclick="show('abs8')"> -->
<!-- Abstract -->
<!-- </button> -->
<a href="https://aclanthology.org/2021.mrl-1.19/"><span class="badge badge-secondary"> Anthology </span></a>
<a href="https://aclanthology.org/2021.mrl-1.19.pdf"><span class="badge badge-pdf"> Paper </span></a>
<a href="https://drive.google.com/file/d/1gXfCTuMvM3aaRtpNsj6GRJrXq0W7Wgs1/view"><span class="badge badge-video"> Presentation </span></a>
<!-- <div id="abs8" class="popup-abs">
Coreference resolution is key to many natural language processing tasks and yet has only been explored for spoken languages.
In signed languages, space is primarily used to establish reference. Solving coreference resolution for signed languages would not only enable higher-level Sign Language Processing systems, but also enhance our understanding of language in different modalities and of situated references, which are key problems in studying grounded language.
In this paper, we: (1) introduce Signed Coreference Resolution, a new challenge for coreference modeling and Sign Language Processing; (2) collect an annotated corpus of German Sign Language with gold labels for coreference together with an annotation software for the task; (3) explore features of hand gesture, iconicity, and spatial situated properties and move forward to propose a set of linguistically informed heuristics and unsupervised models for the task; (4) put forward several proposals about ways to address the complexities of this challenge effectively. Finally, we invite the NLP community to collaborate with signing communities and direct efforts towards SCR to close this gap.
</div> -->
<li>
<a href="https://aclanthology.org/2021.emnlp-main.553/">FantasyCoref: Coreference Resolution on Fantasy Literature Through Omniscient Writer’s Point of View</a>
<br>
Sooyoun Han, Sumin Seo, Minji Kang, <b>Jongin Kim</b>, Nayoung Choi, Min Song, and Jinho D. Choi
<br>
<i>In Proceedings of the EMNLP Workshop on Computational Models of Reference, Anaphora and Coreference (CRAC), 2021</i>
<br>
<a href="https://aclanthology.org/2021.crac-1.3/"><span class="badge badge-secondary"> Anthology </span></a>
<a href="https://aclanthology.org/2021.crac-1.3.pdf"><span class="badge badge-pdf"> Paper </span></a>
<a href="https://drive.google.com/file/d/1bqhqCZzUFT9t_3E0p2-rl7pM4dg3z5th/view"><span class="badge badge-video"> Presentation </span></a>
</section>
<section class="about-section" id="researchDirection">
<div class="text-start">
<h1>Future Research Directions</h1>
<ol>
<!-- 1 -->
<li>Efficient Way of Building Dataset for Low-Resource languages</li>
<ul>
<li>Ways to efficiently build monolingual labeled dataset for low-resource languages<br>(Particularly, data that contain knowledge that cannot be transferred from other high-resoure languages)</li>
<ul>
<li>Active Learning, Human-in-the-loop machine learning</li>
</ul>
</ul>
<!-- 2 -->
<li>Ways to efficiently crowdsource/collect Parallel texts<br>
(for Multilingual Neural Machine Translation)</li>
<ul>
<li>Annotation using Image or GIFs as pivots</li>
<li>Collect Parallel(Comparable) texts from Web and Filter out noise</li>
</ul>
<!-- 3 -->
<li>Multilingual Benchmark Datasets that enable more comprehensive evaluation of Multilingual Models</li>
<ul>
<li>Inclusion of typologically diverse languages</li>
<li>Inclusion of more challenging NLU/NLG tasks</li>
</ul>
<!-- 4 -->
<li>Novel Methods for Pre-Training Multilingual Language Models for more accurate alignment accross different languages (for better multilingual representations)</li>
<ul>
<li>Multilingual subword tokenizer</li>
<li>Encourage explicit attention between languages</li>
<li>Augmenting the model with linguistic knowledge<br>
(= incorporating linguistic knowledge into the model)</li>
</ul>
<!-- 5 -->
<li>Explore Ways to improve Cross-Lingual Transfer Learning</li>
<ul>
<li>Improving zero-shot cross-lingual transfer (Direct Model Transfer)</li>
<ul>
<li>Intermediate task training</li>
</ul>
<li>Overcoming Word Order Difference</li>
<li>Annotation Projection</li>
</ul>
<!-- 6 -->
<li>Applying Cross-Lingual Transfer Learning to Other Tasks<br>
(Would like to explore ways to apply Cross-lingual Transfer Learning to more challenging Tasks)</li>
<ul>
<li>Crossingual IR, including QA, Text Summarization</li>
</ul>
<!-- 7 -->
<li>Multilingual Neural Machine Translation</li>
</section>
</div>
</div>
</div>
</div>
<br>
<p style="color:#808080; font-size:16px;" align="center">Copyright © Jongin Kim 2021
<br> Last updated December 20 2021
</p>
<!-- <div class="totoro"> -->
<!-- <div class="imglink"> -->
<!-- <div style="position:fixed; bottom:20px; right:10px;"><img src="assets/totorobottle.gif" height="100%" onclick="play()" title="♪"></div> -->
<!-- </div> -->
<!-- </div> -->
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>