diff --git a/_layouts/home.html b/_layouts/home.html
index a480e4b..fd3a643 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -9,7 +9,7 @@
Language and Data Intelligence Lab.
of Seoul National University
@@ -24,9 +24,6 @@ Research Topics
Information Retrieval
- This area of our research focuses on developing algorithms and systems for
- information retrieval. Our aim is to enhance the efficiency, relevance, and speed of
- accessing information across various domains.
@@ -34,35 +31,18 @@
Research Topics
alt="Multilingual Language Models Icon">
Multilingual Language Models
-
Our work in multilingual language models revolves around creating models
- capable
- of understanding and generating human languages across diverse linguistic landscapes. We're
- dedicated to
- developing versatile systems that facilitate communication and understanding across global
- boundaries.
Multimodal Learning
-
In multimodal learning, we explore the fusion of vision and language
- through
- advanced algorithms and systems. Our research aims to bridge the gap between different data types,
- enabling
- machines to interpret and generate information from various sources. This interdisciplinary approach
- holds
- promise for natural language understanding.
Code Generation
-
Our focus in code generation encompasses the development of algorithms and
- systems tailored for various tasks, including code summarization and translation. We streamline
- development processes, automate
- tasks, and enhance code quality and comprehension.
\ No newline at end of file
diff --git a/_layouts/person.html b/_layouts/person.html
index 66eca02..54ce24b 100644
--- a/_layouts/person.html
+++ b/_layouts/person.html
@@ -62,12 +62,13 @@ Contact
{% assign ppublication = "" %}
{% for publications-year in site.data.publications %}
{% for publication in publications-year.papers %}
+ {% assign authors = publication.authors %}
{% assign downcasedauthors = publication.authors | downcase %}
{% if downcasedauthors contains pubname %}
{% if publication.url %}
- {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: "|" | append: publication.url | append: ";;" %}
+ {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: "|" | append: authors |append: "|" | append: publication.url | append: ";;" %}
{% else %}
- {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue | append: ";;" %}
+ {% assign ppublication = ppublication | append: publication.title | append: "|" | append: publication.venue |append: "|" | append: authors | append: ";;" %}
{% endif %}
{% endif %}
{% endfor %}
@@ -81,9 +82,9 @@ Publications
{% for publication in ppublication %}
{% assign ppublication_detail = publication | split: "|" %}
{% if ppublication_detail.size > 2 %}
- {{ ppublication_detail[0] }}, {{ ppublication_detail[1] }}
- {% else %}
- {{ ppublication_detail[0] }}, {{ ppublication_detail[1] }}
+ {{ ppublication_detail[0] }}, {{ ppublication_detail[1] }}
{{ ppublication_detail[2] }}
+ {% else %}
+ {{ ppublication_detail[0] }}, {{ ppublication_detail[1] }}
{{ ppublication_detail[2] }}
{% endif %}
{% endfor %}
diff --git a/join_us.html b/join_us.html
new file mode 100644
index 0000000..5f43b66
--- /dev/null
+++ b/join_us.html
@@ -0,0 +1,10 @@
+---
+layout: default
+title: "Join Us"
+permalink: /join
+sitemap: true
+---
+
+
Join Us
+
If you are interested in joining our team, we encourage you to contact us at . We look forward to hearing from you and learning about your research interests and experiences.
+
\ No newline at end of file
diff --git a/people.html b/people.html
index 8d10b0a..7800cd9 100644
--- a/people.html
+++ b/people.html
@@ -13,7 +13,11 @@ LDILab's Family
{% assign people = site.people | where: 'position', category.name | sort: 'timestamp' %}
{% for member in people %}
-
+ {% assign memberurl = site.url | append: site.baseurl | append: member.url %}
+ {% if member.position == 'Professor' %}
+ {% assign memberurl = 'https://seungwonh.github.io/' %}
+ {% endif %}
+
diff --git a/publications.html b/publications.html
index 3c055ab..fb34483 100644
--- a/publications.html
+++ b/publications.html
@@ -5,7 +5,7 @@
sitemap: true
---
-
Publications
+
Publications
{% for publications-year in site.data.publications %}