Skip to content

Latest commit

 

History

History
110 lines (104 loc) · 3.93 KB

File metadata and controls

110 lines (104 loc) · 3.93 KB
layout default
title OdenseNLP
permalink /
{% assign front_hero = site.data.frontpage.hero_image | default: '/assets/images/odense.jpg' %}
OdenseNLP

OdenseNLP

Safe, Efficient and Open Natural Language Processing @ University of Southern Denmark

Latest news

See all posts
  {% assign latest_posts = site.posts | slice: 0, 4 %}
  <div class="news-list-minimal" aria-label="Latest news">
    {% for post in latest_posts %}
      <article class="news-item-minimal {% if post.image %}with-image{% endif %}">
        {% if post.image %}
          {% assign news_image = post.image %}
          {% if news_image contains '://' %}
            <img class="news-item-image" src="{{ news_image }}" alt="{{ post.image_alt | default: post.title }}" />
          {% else %}
            <img class="news-item-image" src="{{ news_image | relative_url }}" alt="{{ post.image_alt | default: post.title }}" />
          {% endif %}
        {% endif %}
        <div>
          <p class="meta">{{ post.date | date: "%d %B %Y" }}</p>
          <h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
          <p>{{ post.excerpt | strip_html | truncate: 185 }}</p>
        </div>
      </article>
    {% endfor %}
  </div>
</div>

Current focuses

Low-resource NLP

Language technologies for low-resource langauges, particularly Danish and neighboring Scandinavian languages.

Efficient NLP

Fast and efficient NLP architectures and methods.

AI Safety & Interpretability

Making AI systems more safe, trustworthy, and interpretable.

Repositories summary

See all repositories
{% assign summary_repos = site.data.repositories | slice: 0, 3 %}
{% for repo in summary_repos %}

{{ repo.description | truncate: 150 }}

{% endfor %}

Datasets summary

See all datasets
{% assign summary_datasets = site.data.datasets | slice: 0, 3 %}
{% for dataset in summary_datasets %}

{{ dataset.description | truncate: 150 }}

{% endfor %}