-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·738 lines (478 loc) · 22.5 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
<!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>Yiwei Wang - Homepage</title>
<!--
- favicon
-->
<!-- <link rel="shortcut icon" href="./assets/images/logo.ico" type="image/x-icon"> -->
<script>
window.onload = function() {
const canvas = document.createElement('canvas');
canvas.width = 19; // Size of favicon in pixels
canvas.height = 19; // Size of favicon in pixels
const ctx = canvas.getContext('2d');
ctx.font = '16px Arial';
ctx.fillText('🍀', 0, 16); // The shamrock emoji
const link = document.createElement('link');
link.rel = 'icon';
link.href = canvas.toDataURL('image/png');
document.head.appendChild(link);
};
</script>
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<!--
- #MAIN
-->
<main>
<!--
- #SIDEBAR
-->
<aside class="sidebar" data-sidebar>
<div class="sidebar-info">
<figure class="avatar-box">
<img src="./assets/images/profile.jpg" alt="Yiwei Wang" class="rounded-avatar">
</figure>
<div class="info-content">
<h1 class="name" title="Yiwei Wang">王弋潍 · Yiwei Wang</h1>
<!-- <h1 class="name" title="Yiwei Wang">Yìwéi Wáng</h1> -->
<p class="title">IPA: /ì wéi wáŋ/</p>
</div>
<button class="info_more-btn" data-sidebar-btn>
<span>Show Contacts</span>
<ion-icon name="chevron-down"></ion-icon>
</button>
</div>
<div class="sidebar-info_more">
<div class="separator"></div>
<ul class="contacts-list">
<li class="contact-item">
<div class="icon-box">
<ion-icon name="mail-outline"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Email</p>
<a href="mailto:[email protected]" class="contact-link">[email protected]</a>
</div>
</li>
<li class="contact-item">
<div class="icon-box">
<ion-icon name="location-outline"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Location</p>
<address>
Darmstadt-Wixhausen,
Germany
</address>
</div>
</li>
</ul>
<div class="separator"></div>
<ul class="social-list">
<li class="social-item">
<a href="https://github.com/wang-yiwei" class="social-link">
<span title="GitHub"><ion-icon name="logo-github"></ion-icon></span>
</a>
</li>
<li class="social-item">
<a href="https://scholar.google.com/citations?user=MoGwc4YAAAAJ&hl=en" class="social-link">
<span title="Google Scholar"><ion-icon name="school"></ion-icon></span>
</a>
</li>
<li class="social-item">
<a href="https://www.linkedin.com/in/yiwei-wang-sxxz/" class="social-link">
<span title="LinkedIn"><ion-icon name="logo-linkedin"></ion-icon></span>
</a>
</li>
<li class="social-item">
<a href="https://twitter.com/hieusong88" class="social-link">
<span title="Twitter"><ion-icon name="logo-twitter"></ion-icon></span>
</a>
</li>
<!-- <li class="social-item">
<a href="https://blog.csdn.net/IwanVan" class="social-link">
<span title="CSDN Blog"><ion-icon name="planet"></ion-icon></span>
</a>
</li> -->
</ul>
</div>
</aside>
<!--
- #main-content
-->
<div class="main-content">
<!--
- #NAVBAR
-->
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item">
<button class="navbar-link active" data-nav-link>Home</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Resume</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Research</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Contact</button>
</li>
<!-- <li class="navbar-item">
<button class="navbar-link" data-nav-link>Portfolio</button>
</li> -->
<!-- <li class="navbar-item">
<button class="navbar-link" data-nav-link>Contact</button>
</li> -->
<!-- <li class="navbar-item">
<button class="navbar-link" data-nav-link>Blog</button>
</li> -->
</ul>
</nav>
<!--
- #ABOUT
-->
<article class="about active" data-page="home">
<header>
<h2 class="h2 article-title">Bio</h2>
</header>
<section class="about-text">
<p>
I am currently a doctoral researcher at the <a href="https://www.informatik.tu-darmstadt.de/ukp/ukp_home/index.en.jsp"><u>Ubiquitous Knowledge Processing Lab (UKP)</u></a>, at <a href="https://www.tu-darmstadt.de/"><u>Technische Universität Darmstadt</u></a>.
, under the supervision of <a href="https://www.informatik.tu-darmstadt.de/ukp/ukp_home/head_ukp/index.en.jsp"><u>Prof. Dr. Iryna Gurevych</u></a>.
My PhD programme is part of the <a href="https://intertext.ukp-lab.de/"><u>InterText Initiative</u></a> and <a href="https://www.informatik.tu-darmstadt.de/ukp/research_ukp/ukp_research_projects/athene_senpai_psi/athene_senpai__psi.en.jsp"><u>Athena SenPAI</u></a>. My research focuses on Computational Linguistics, Natural Language Processing, Machine Learning, and Multilingualism Technology.
</p>
<p>
Before joining UKP, I earned my Master's degree in Speech and Language Processing from <a href="https://www.uni-konstanz.de"><u>Universität Konstanz</u></a>, where I was supervised by <a href="https://scholar.google.de/citations?user=F_RkRmcAAAAJ&hl"><u>Prof. Dr. Prof. Andreas Spitz</u></a> and <a href="https://scholar.google.de/citations?user=mHwLPGQAAAAJ&hl=en"><u>Prof. Dr. Diego Frassinelli</u></a>.
I also hold a Bachelor's degree in Germanic Linguistics with a specialisation in Computational Linguistics from <a href="https://en.nankai.edu.cn/"><u>Nankai University</u></a>, during which I spent a significant exchange year at <a href="https://www.uni-jena.de"><u>Friedrich-Schiller-Universität Jena</u></a>.
</p>
<p>
If you are interested in collaborating on compelling NLP topics, please feel free to <a href="mailto:[email protected]"><u>email</u></a> me.
</p>
<h4 class="h4 article-title">News & Updates</h4>
<section class="about-text">
<h3 class="subsubtitle">2024</h3>
<ul class="research-interests-list">
<li><b>May:</b> I am thrilled to announce that I will be joining the <a href="https://www.informatik.tu-darmstadt.de/ukp/ukp_home/index.en.jsp"><u>UKP Lab</u></a> for my PhD starting in Summer 2024.</li>
</ul>
<h3 class="subsubtitle">2023</h3>
<ul class="research-interests-list">
<li><b>September:</b> I will begin a research internship with the <a href="https://websci.aifb.kit.edu/"><u>Web Science Research Group</u></a> in <a href="https://www.kit.edu/"><u>Karlsruher Institut für Technologie (KIT)</u></a>, while continuing as a full employee at <a href="https://www.b-ite.de/"><u>BITE GmbH</u></a>.</li>
<li><b>March:</b> I will continue my role at <a href="https://www.b-ite.de/"><u>BITE GmbH</u></a> as a working student while progressing with my Master's thesis project at the <a href="https://www.dim.uni-konstanz.de/"><u>Data and Information Mining Lab</u></a> under the guidance of Prof. Andreas Spitz at Universität Konstanz.</li>
</ul>
<h3 class="subsubtitle">2022</h3>
<ul class="research-interests-list">
<li><b>September:</b> I am excited to begin a 6-month full-time internship with the NLP development group at <a href="https://www.b-ite.de/"><u>BITE GmbH</u></a> in Ulm.</li>
</ul>
</section>
<h4 class="h4 article-title">Outside of Work</h4>
<p>
When I'm not deep in research, you can find me indulging in aerobic sports such as hiking, long-distance jogging and trail/ enduro cycling.
I'm also an avid fan of competitive sports. Whether it's cheering for the <a href="https://en.wikipedia.org/wiki/San_Antonio_Spurs"><u>San Antonio Spurs</u></a> or rooting for <a href="https://en.wikipedia.org/wiki/Team_Vitality"><u>Team Vitality</u></a> in esports.
</p>
<p>
Beyond my endeavours in approaching languages via machines, I have a keen interest in learning natural languages and exploring their dialects in a traditional way.
I am currently working on Japanese, <a href="https://en.wikipedia.org/wiki/Cantonese"><u>Cantonese</u></a> and <a href="https://en.wikipedia.org/wiki/Swabian_German"><u>Swabian</u></a>/ <a href="https://en.wikipedia.org/wiki/Alemannic_German"><u>Alemannic</u></a> German, while I'm not yet at the authentic level, I am enjoying the journey and content with progressing at my own pace savouring each new word and phrase as I go.
</p>
<!-- <h4 class="h4 article-title"></h4>
<p>
</p> -->
</section>
<!--
- testimonials modal
-->
<div class="modal-container" data-modal-container>
<div class="overlay" data-overlay></div>
<section class="testimonials-modal">
<button class="modal-close-btn" data-modal-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
</section>
</div>
</article>
<!--
- #RESUME
-->
<article class="resume" data-page="resume">
<header>
<h2 class="h2 article-title">Short CV</h2>
</header>
<section class="about-text">
<p>
If you would like a full version of my resume, please contact me by <a href="mailto:[email protected]">email</a>.
</p>
</section>
<section class="timeline">
<div class="title-wrapper">
<div class="icon-box">
<!-- <ion-icon name="book-outline"></ion-icon> -->
<ion-icon name="school-outline"></ion-icon>
</div>
<h3 class="h3">Education</h3>
</div>
<ol class="timeline-list">
<li class="timeline-item">
<h4 class="h4 timeline-item-title">PhD. in Computer Science, UKP Lab, Technical University of Darmstadt, Germany</h4>
<span>Aug. 2024 — present</span>
<!-- <p class="timeline-text">
Specialised in Machine Language Processing with Research Focus:<br>
- Language Toxicity Detection<br>
- Text Style Transfer<br>
- Safe Conditional Text Generation with Large Language Models<br>
</p> -->
<p class="timeline-text">
Advisors: I. Gurevych.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">M.A. in Speech and Language Processing, University of Konstanz, Germany</h4>
<span>Oct. 2020 — Sep. 2023</span>
<p class="timeline-text">
Title of thesis: <b>DistillDetox: Knowledge Distillation for Improved Text Detoxification</b> (1.0/ 5.0)
</p>
<p class="timeline-text">
Graduated with distinction, Advisors: A. Spitz, D. Frassinelli.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">B.A. Study Abroad, Friedrich Schiller University Jena, Germany</h4>
<span>Oct. 2018 — Sep. 2019</span>
<p class="timeline-text">
Germanic Linguistics with a focus on Theoretical Linguistics and Computational Linguistics
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">B.A. in Germanic Linguistics & Computational Linguistics, Nankai University, PR. China</h4>
<span>Sep. 2016 — Aug. 2020</span>
<p class="timeline-text">
Title of Thesis: <b>Evaluation of the Machine Translation of Chinese Idioms Into German</b> (written in German)
</p>
<p class="timeline-text">
Advisors: Dr. Yingbin Ma.
</p>
</li>
</ol>
</section>
<section class="timeline">
<div class="title-wrapper">
<div class="icon-box">
<ion-icon name="desktop-outline"></ion-icon>
</div>
<h3 class="h3">Professional Experience</h3>
</div>
<ol class="timeline-list">
<li class="timeline-item">
<h4 class="h4 timeline-item-title">NLP Engineer, BITE GmbH, Germany</h4>
<span>Aug. 2022 — Jul. 2024</span>
<p class="timeline-text">
Key Responsibilities and Projects: Conversational AI for SaaS E-Recruitment Service, LLM-based Text Writing Assistant, Textual Data Engineering & Augmentation.
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Research Assistant, Karlsruhe Institute of Technology, Germany</h4>
<span>Sep. 2023 — Jan. 2024</span>
<p class="timeline-text">
I work on a doctoral research proposal under the supervision of Prof. Dr. Michael Färber, mainly on: Citation-aware LLM, Hallucination Detection & Reduction in Generative AI Models.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">IT Intern, Volkswagen Automatic Transmission (Tianjin) Co. Ltd., PR. China</h4>
<span>2019. Sep — Feb. 2020</span>
<p class="timeline-text">
Key Responsibilities: Data Analysis, Internal System Maintenance, Annotation of an Internal Automotive Terminology Corpus (DE-EN-CN).
</p>
</li>
</ol>
</section>
<section class="skill">
<h3 class="h3 skills-title">My skills</h3>
<ul class="skills-list content-card">
<li class="skills-item">
<div class="title-wrapper">
<h5 class="h5 skill-header">Programming</h5>
<data value="80">Python, Shell, R, HTML, CSS</data>
</div>
</li>
<li class="skills-item">
<div class="title-wrapper">
<h5 class="h5 skill-header">Editing Applications</h5>
<data value="80">LaTeX, Markdown, Microsoft Office</data>
</div>
</li>
<li class="skills-item">
<div class="title-wrapper">
<h5 class="h5 skill-header">Languages</h5>
<data value="80">
English (C2), German (C2), Mandarin, Jin Chinese,
Cantonese (Good Proficiency)</data>
</div>
</li>
<!-- <li class="skills-item">
<div class="title-wrapper">
<h5 class="h5">Graphic design</h5>
<data value="70">70%</data>
</div>
<div class="skill-progress-bg">
<div class="skill-progress-fill" style="width: 70%;"></div>
</div>
</li> -->
</ul>
</section>
</article>
<!-- RESEARCH -->
<!-- RESEACH PAGE -->
<article class="research" data-page="research">
<header>
<h2 class="h2 article-title">Research</h2>
</header>
<section class="about-text">
<h3 class="h3 subtitle">Research Interests</h3>
<ul class="research-interests-list">
<li>Toxic Language Detection</li>
<li>Text Detoxification Generation</li>
<li>Cross-lingual Adaption/ Multilingualism-NLP</li>
<li>Knowledge Distillation with LLM-Reasoning</li>
</ul>
</section>
<section class="about-text">
<h3 class="h3 subtitle">Publications</h3>
<ul class="research-interests-list">
<li><s>TBA: I am working on it. Please check back later for updates XD</s></li>
</ul>
</section>
</article>
<!-- -- Contact section -- -->
<article class="contact" data-page="contact">
<header>
<h2 class="h2 article-title">Contact Me</h2>
</header>
<section class="about-text">
<p>
If you have any questions, are interested in my research, or would like to discuss potential collaborations in the fields of Natural Language Processing, Computational Linguistics, or Machine Learning, I’d love to hear from you.
</p>
<p>
The best way to reach me is via email. Please feel free to write to me at: <a href="mailto:[email protected]">[email protected]</a>. I make an effort to respond to all emails promptly.
</p>
Looking forward to connecting with you!
</section>
<!-- <section class="mapbox" data-mapbox>
<figure>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d199666.5651251294!2d-121.58334177520186!3d38.56165006739519!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x809ac672b28397f9%3A0x921f6aaa74197fdb!2sSacramento%2C%20CA%2C%20USA!5e0!3m2!1sen!2sbd!4v1647608789441!5m2!1sen!2sbd"
width="400" height="300" loading="lazy"></iframe>
</figure>
</section> -->
<!-- <section class="contact-form"> -->
<!-- <h3 class="h3 form-title">Contact Form</h3> -->
<!--
<form action="#" class="form" data-form>
<div class="input-wrapper">
<input type="text" name="fullname" class="form-input" placeholder="Full name" required data-form-input>
<input type="email" name="email" class="form-input" placeholder="Email address" required data-form-input>
</div>
<textarea name="message" class="form-input" placeholder="Your Message" required data-form-input></textarea>
<button class="form-btn" type="submit" disabled data-form-btn>
<ion-icon name="paper-plane"></ion-icon>
<span>Send Message</span>
</button>
</form> -->
<!-- </section> -->
</article>
<!-- -- Portfolio section -- -->
<article class="portfolio" data-page="portfolio">
<header>
<h2 class="h2 article-title">Portfoliooooo</h2>
</header>
<section class="projects">
<div class="filter-select-box">
<button class="filter-select" data-select>
<div class="select-value" data-selecct-value>Select category</div>
<div class="select-icon">
<ion-icon name="chevron-down"></ion-icon>
</div>
</button>
</div>
</section>
</article>
<!--
- #PORTFOLIO
-->
<!-- <article class="portfolio" data-page="portfolio">
<header>
<h2 class="h2 article-title">Portfolio</h2>
</header>
<section class="projects">
<ul class="filter-list">
<li class="filter-item">
<button class="active" data-filter-btn>All</button>
</li>
<li class="filter-item">
<button data-filter-btn>Web design</button>
</li>
<li class="filter-item">
<button data-filter-btn>Applications</button>
</li>
<li class="filter-item">
<button data-filter-btn>Web development</button>
</li>
</ul>
<div class="filter-select-box">
<button class="filter-select" data-select>
<div class="select-value" data-selecct-value>Select category</div>
<div class="select-icon">
<ion-icon name="chevron-down"></ion-icon>
</div>
</button>
<ul class="select-list">
<li class="select-item">
<button data-select-item>All</button>
</li>
<li class="select-item">
<button data-select-item>Web design</button>
</li>
<li class="select-item">
<button data-select-item>Applications</button>
</li>
<li class="select-item">
<button data-select-item>Web development</button>
</li>
</ul>
</div>
</section>
</article> -->
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<!-- <p> Yiwei Wang, Copyright © All Rights Reserved.</p> -->
<p>Copyright © Yiwei Wang. All Rights Reserved.</p>
<p>Powered by <a href="https://github.com/codewithsadee/vcard-personal-portfolio">vCard - Personal portfolio</a></p>
<!-- <span style="display: inline-block; vertical-align: middle;">Powered by</span> <a href="https://github.com/codewithsadee/vcard-personal-portfolio" style="display: inline-block; vertical-align: middle;">vCard - Personal portfolio</a> -->
</div>
</footer>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>