{% extends 'base.html' %} {% block title %}Yan Lin's Homepage{% endblock %} {% block navigation %} {% include 'partials/navigation.html' %} {% endblock %} {% block content %}

Biography - Yan Lin

I am currently a postdoctoral researcher in the Department of Computer Science at Aalborg University, Denmark. I received my PhD and Bachelor's degrees from Beijing Jiaotong University, China. My research interests include spatiotemporal data mining, representation learning, and AI for science.

{% for section in data.sections %} {% if section == 'publications' %}

Publications

View All
{% for pub in data.primaryPublications[:7] %} {% with type='primary' %} {% include 'partials/publication.html' %} {% endwith %} {% endfor %}

{% for pub in data.secondaryPublications[:7] %} {% with type='secondary' %} {% include 'partials/publication.html' %} {% endwith %} {% endfor %}
* Equal Contribution
{% elif section == 'projects' %}

Projects

View All
{% for project in data.primaryProjects[:5] %} {% with type='primary' %} {% include 'partials/project.html' %} {% endwith %} {% endfor %}

{% for project in data.secondaryProjects[:5] %} {% with type='secondary' %} {% include 'partials/project.html' %} {% endwith %} {% endfor %}
{% elif section == 'teaching' %}

Teaching

View All
{% for teaching in data.teaching[:5] %} {% include 'partials/teaching.html' %} {% endfor %}
{% elif section == 'presentations' %}

Presentations

View All
{% for presentation in data.presentations[:5] %} {% include 'partials/presentation.html' %} {% endfor %}
{% elif section == 'services' %}

Services

{% endif %} {% endfor %} {% endblock %} {% block extra_js %} {{ super() }} {% endblock %}