Skip to content

Latest commit

 

History

History
38 lines (35 loc) · 1.31 KB

File metadata and controls

38 lines (35 loc) · 1.31 KB
layout page
title Paper Reviews
permalink /paper-reviews/
main_nav true
nav_order 3

Deep teardowns of key AI/ML papers — LLMs, multimodal, fine-tuning, RAG — down to their design decisions and trade-offs, grouped by topic.

{%- comment -%} Only "Paper Reviews" posts, grouped by their secondary topic — prevents other top-level categories (e.g. Insights) from leaking in via shared subcategories {%- endcomment -%} {% assign review_posts = site.categories['Paper Reviews'] %} {% assign topics = "" | split: "" %} {% for post in review_posts %} {% for c in post.categories %} {% unless c == 'Paper Reviews' %}{% assign topics = topics | push: c %}{% endunless %} {% endfor %} {% endfor %} {% assign topics = topics | uniq | sort %}

{% for cat in topics %} {% assign cat_display = cat | replace: "-", " " | replace: "_", " " %}

{{ cat_display }}

    {% for post in review_posts %} {% if post.categories contains cat %}
  • {{ post.title }} - {{ post.date | date_to_long_string }}
  • {% endif %} {% endfor %}
{% unless forloop.last %}
{% endunless %} {% endfor %}