Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KimJonghoSNU committed Sep 26, 2024
2 parents b3957f6 + 86bf81e commit 30718b2
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 29 deletions.
22 changes: 1 addition & 21 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="lab-name">Language and Data Intelligence Lab.</div>
<div class="lab-info">of Seoul National University</div>
<div>
<a class="explore-btn" href="{{ site.url }}{{ site.baseurl }}/publications">Explore</a>
<a class="explore-btn" href="{{ site.url }}{{ site.baseurl }}/publications">Publications</a>
<a class="github-btn" href="https://github.com/ldilab" target="_blank" >Github</a>
</div>
</div>
Expand All @@ -24,45 +24,25 @@ <h1 class="research">Research Topics</h1>
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/ir.svg" alt="Information Retrieval Icon">
</div>
<div class="topic-title">Information Retrieval</div>
<p class="topic-description">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.</p>
</div>
<div class="topic green">
<div class="topic-icon">
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/multilanguage.svg"
alt="Multilingual Language Models Icon">
</div>
<div class="topic-title">Multilingual Language Models</div>
<p class="topic-description">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.</p>
</div>
<div class="topic orange">
<div class="topic-icon">
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/multimodal.svg" alt="Multimodal Learning Icon">
</div>
<div class="topic-title">Multimodal Learning</div>
<p class="topic-description">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.</p>
</div>
<div class="topic red">
<div class="topic-icon">
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/codegeneration.svg" alt="Code Generation Icon">
</div>
<div class="topic-title">Code Generation</div>
<p class="topic-description">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.</p>
</div>
</div>
</div>
11 changes: 6 additions & 5 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ <h2 class="other-category">Contact</h2>
{% 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 %}
Expand All @@ -81,9 +82,9 @@ <h2 class="other-category">Publications</h2>
{% for publication in ppublication %}
{% assign ppublication_detail = publication | split: "|" %}
{% if ppublication_detail.size > 2 %}
<li><a class="person-publication" href="{{ ppublication_detail[2] }}">{{ ppublication_detail[0] }}</a>, <span class="person-pub-venue">{{ ppublication_detail[1] }}</span></li>
{% else %}
<li><a class="person-publication" href="{{ site.url }}{{ site.baseurl }}/publications">{{ ppublication_detail[0] }}</a>, <span class="person-pub-venue">{{ ppublication_detail[1] }}</span></li>
<li><a class="person-publication" href="{{ ppublication_detail[3] }}">{{ ppublication_detail[0] }}</a>, <span class="person-pub-venue">{{ ppublication_detail[1] }}</span><br>{{ ppublication_detail[2] }}</li>
{% else %}
<li><a class="person-publication" href="{{ site.url }}{{ site.baseurl }}/publications">{{ ppublication_detail[0] }}</a>, <span class="person-pub-venue">{{ ppublication_detail[1] }}</span><br>{{ ppublication_detail[2] }}</li>
{% endif %}
{% endfor %}
</ul>
Expand Down
10 changes: 10 additions & 0 deletions join_us.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: default
title: "Join Us"
permalink: /join
sitemap: true
---
<div class="container">
<h1 class="catery">Join Us</h1>
<p class="description">If you are interested in joining our team, we encourage you to contact us at <a href="mailto:""></a>. We look forward to hearing from you and learning about your research interests and experiences.</p>
</div>
8 changes: 6 additions & 2 deletions people.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ <h1 class="category">LDILab's Family</h1>
<div class="people-list">
{% assign people = site.people | where: 'position', category.name | sort: 'timestamp' %}
{% for member in people %}
<div class="person" onclick="location.href='{{ site.url }}{{ site.baseurl }}{{ member.url }}';" style="cursor: pointer;">
{% assign memberurl = site.url | append: site.baseurl | append: member.url %}
{% if member.position == 'Professor' %}
{% assign memberurl = 'https://seungwonh.github.io/' %}
{% endif %}
<div class="person" onclick="location.href='{{ memberurl }}';" style="cursor: pointer;">
<div class="person-image-container">
<img src="{{ site.url }}{{ site.baseurl }}/assets/images/people/{{ member.photo }}"
alt="{{ member.name }}">
Expand All @@ -36,7 +40,7 @@ <h1 class="category">LDILab's Family</h1>
{% endif %}
{% endfor %}
</ul>
<a class="person-moreinfo" href="{{ site.url }}{{ site.baseurl }}{{ member.url }}">More
<a class="person-moreinfo" href="{{ memberurl }}">More
Information</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
sitemap: true
---
<div class="container">
<h1 class="category">Publications</h1>
<h1 class="catery">Publications</h1>
<div class="publications">
{% for publications-year in site.data.publications %}
<div class="publications-content">
Expand Down

0 comments on commit 30718b2

Please sign in to comment.