diff --git a/_data/publications.yml b/_data/publications.yml index 95e2da1..c40c3bd 100644 --- a/_data/publications.yml +++ b/_data/publications.yml @@ -80,7 +80,7 @@ year: 2025 status: "published" type: "article" - journal: "Transactions on Machine Learning Research" + journal: "Transactions on Machine Learning Research (TMLR 2025)" issn: "2835-8856" url: "https://openreview.net/pdf?id=e1aXaIXblQ" arxiv: "2506.15976" @@ -157,7 +157,7 @@ year: 2025 status: "published" type: "inproceedings" - booktitle: "Proceedings of the IEEE/CVF Conference on Computer Vision, Pattern Recognition (CVPR) 2025" + booktitle: "Proceedings of the IEEE/CVF Conference on Computer Vision, Pattern Recognition (CVPR 2025)" url: "https://openaccess.thecvf.com/content/CVPR2025/html/Zhang_2DMamba_Efficient_State_Space_Model_for_Image_Representation_with_Applications_CVPR_2025_paper.html" arxiv: "2412.00678" github: "https://github.com/AtlasAnalyticsLab/2DMamba" @@ -227,7 +227,7 @@ year: 2025 status: "published" type: "inproceedings" - booktitle: "International Conference on Learning Representations (ICLR) 2025" + booktitle: "International Conference on Learning Representations (ICLR 2025)" url: "https://openreview.net/pdf?id=puTxuiK2qO" arxiv: "2405.16397" github: "https://github.com/AtlasAnalyticsLab/AdaFisher" @@ -241,7 +241,7 @@ year: 2024 status: "published" type: "inproceedings" - booktitle: "Proceedings of the IEEE/CVF Conference on Computer Vision, Pattern Recognition (CVPR) 2024" + booktitle: "Proceedings of the IEEE/CVF Conference on Computer Vision, Pattern Recognition (CVPR 2024)" url: "https://openaccess.thecvf.com/content/CVPR2024W/CVMI/html/Nasiri-Sarvi_Vim4Path_Self-Supervised_Vision_Mamba_for_Histopathology_Images_CVPRW_2024_paper.html" arxiv: "2404.13222" github: "https://github.com/AtlasAnalyticsLab/Vim4Path" diff --git a/_includes/publication-item.html b/_includes/publication-item.html index edacf4e..ab281c5 100644 --- a/_includes/publication-item.html +++ b/_includes/publication-item.html @@ -1,10 +1,7 @@ {%- comment -%} - Publication card partial: - - Displays a thumbnail column (defaults to the lab logo when no list_image is provided). - - Renders venue metadata and resource links pulled from _data/publications.yml. + Publication list entry rendered in a simple two-column layout (image + text). {%- endcomment -%} {% assign entry = include.entry | default: empty %} -{% assign include_year = include.include_year | default: false %} {% assign item_id = entry.id | default: entry.title | slugify %} {% assign list_image = entry.list_image %} @@ -16,97 +13,56 @@ {% assign list_image = 'images/logopic/group_logo_medium.png' %} {% endif %} -{% assign meta_parts = '' | split: '' %} +{% comment %} + List of possible venue fields in order of preference. +{%- endcomment -%} {% assign venue = entry.journal | default: entry.booktitle | default: entry.publisher | default: entry.school %} -{% if venue %} - {% assign meta_parts = meta_parts | push: venue %} -{% endif %} -{% if entry.series %} - {% assign meta_parts = meta_parts | push: entry.series %} -{% endif %} -{% assign volume_part = '' %} -{% if entry.volume %} - {% assign volume_part = 'Vol. ' | append: entry.volume %} -{% endif %} -{% if entry.number %} - {% assign number_part = 'No. ' | append: entry.number %} - {% if volume_part %} - {% assign volume_part = volume_part | append: ', ' | append: number_part %} - {% else %} - {% assign volume_part = number_part %} - {% endif %} -{% endif %} -{% if volume_part %} - {% assign meta_parts = meta_parts | push: volume_part %} -{% endif %} -{% if entry.pages %} - {% assign meta_parts = meta_parts | push: 'pp. ' | append: entry.pages %} -{% endif %} -{% if entry.month %} - {% assign meta_parts = meta_parts | push: entry.month %} -{% endif %} -{% if include_year and entry.year %} - {% assign meta_parts = meta_parts | push: entry.year %} -{% endif %} -{% capture meta_string %}{{ meta_parts | join: ' ยท ' }}{% endcapture %} -{% assign meta_string = meta_string | strip %} +{% assign link_count = 0 %} +{% if entry.url %}{% assign link_count = link_count | plus: 1 %}{% endif %} +{% if entry.arxiv %}{% assign link_count = link_count | plus: 1 %}{% endif %} +{% if entry.github %}{% assign link_count = link_count | plus: 1 %}{% endif %} +{% if entry.doi %}{% assign link_count = link_count | plus: 1 %}{% endif %} +{% if entry.video %}{% assign link_count = link_count | plus: 1 %}{% endif %} +{% if entry.poster %}{% assign link_count = link_count | plus: 1 %}{% endif %} -
{{ entry.title }}
{% if entry.authors %} - + {% endif %} - {% if meta_string != '' %} - + {% if venue %} +{{ venue }}
{% endif %} {% if entry.note %} -{{ entry.note }}
+ {% endif %} + {% if link_count > 0 %} ++ {% if entry.url %} + [LINK] + {% endif %} + {% if entry.arxiv %} + [ARXIV] + {% endif %} + {% if entry.github %} + [CODE] + {% endif %} + {% if entry.doi %} + [DOI] + {% endif %} + {% if entry.video %} + [VIDEO] + {% endif %} + {% if entry.poster %} + [POSTER] + {% endif %} +
{% endif %} -
+
+
+
+
+
+
+
-
-Our research integrates computer vision, deep learning, optimization, and natural language processing, with a primary application focus on digital and computational pathology. Contributions such as 2DMamba, Tissue2Vec, Vim4Path, ADPv2, and AdaFisher collectively drive forward transparent, efficient, and clinically relevant machine learning for pathology and medical imaging.
-
-
-
----
-
-(See also the personal webpage of our group members)
+## List of Publications
{% assign all_publications = site.data.publications | default: empty | compact %}
-{% assign highlights = all_publications | where: 'highlight', 1 | sort: 'year' | reverse %}
-{% assign under_review = all_publications | where: 'status', 'under_review' | sort: 'year' | reverse %}
-{% assign published_entries = all_publications | where: 'status', 'published' | sort: 'year' | reverse %}
-
-{% if highlights.size > 0 %}
-
-## Group Highlights
-
-(For a full list of publications, see [below](#list-of-publications), and see also the personal webpage of our group members)
-{{ details.description }}
{% endif %} - {% if entry.authors %}{{ entry.authors }}
{% endif %} - {% if details.link_url %} -{{ details.link_label | default: details.link_url }}
- {% endif %} - {% if details.news_primary %} -{{ details.news_primary }}
- {% endif %} - {% if details.news_secondary %} -{{ details.news_secondary }}
- {% endif %} -- -## List of Publications +{% assign published_entries = all_publications | where: 'status', 'published' %} +{% assign under_review_entries = all_publications | where: 'status', 'under_review' %} {% if published_entries.size > 0 %} - + ### Published -