Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion _data/people.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ kesavanramakrishnan:
url: https://www.linkedin.com/in/kesavan-ramakrishnan/
title: Undergraduate Student


agambhatia:
name: Agam Bhatia
url: http://agu18dec.github.io/
Expand All @@ -140,6 +139,11 @@ herumbshandilya:
url: https://www.herumbshandilya.com/
title: Master's Student

ethanboneh:
name: Ethan Boneh
url: https://www.linkedin.com/in/ethan-boneh
title: Undergraduate Student

orhunakengin:
name: Orhun Akengin
url: https://www.linkedin.com/in/akenginorhun/
Expand Down
29 changes: 20 additions & 9 deletions _layouts/pub.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,26 @@ <h1 class="title">{{page.title}}</h1>

<div id="metadata">
{% if page.venue != "none" %}
<p>
<span id="venue">
{% if page.preprint %}
{{page.preprint.server}}: {{page.preprint.id}}
{% else %}
{{site.data.venues[page.venue].full | default:page.venue}}, {{page.year}}
{% endif %}
</span>
</p>
{% if page.venue == "preprint" and page.venue_txt and page.venue_txt != '' %}
<p>
<span id="venue">{{page.venue_txt}}</span>
</p>
{% else %}
<p>
<span id="venue">
{% if page.preprint %}
{{page.preprint.server}}: {{page.preprint.id}}
{% else %}
{{site.data.venues[page.venue].full | default:page.venue}}, {{page.year}}
{% endif %}
</span>
</p>
{% if page.venue_txt and page.venue_txt != '' %}
<p>
<span class="venue-extra">{{page.venue_txt}}</span>
</p>
{% endif %}
{% endif %}
{% endif %}
{% if page.award %}
<p class="award">
Expand Down
1 change: 1 addition & 0 deletions _pubs/CHESSpaper.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ authors:
- name: Amin Saberi
affiliation: Stanford University
venue: preprint
venue_txt: MAS@ICML 2025
year: 2024
date: 2024-04-23
has_pdf: true
Expand Down
1 change: 1 addition & 0 deletions _pubs/archon.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ authors:
affiliation: Stanford
- key: azaliamirhoseini
venue: icml
venue_txt: SSI-FM (Oral) @ ICLR 2025
year: 2024
date: 2024-09-23
has_pdf: true
Expand Down
1 change: 1 addition & 0 deletions _pubs/cartridges.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ authors:
- name: Christopher Ré
affiliation: Stanford
venue: preprint
venue_txt: ES-FoMo (Oral) III @ICML 2025
year: 2025
date: 2025-06-06
has_pdf: true
Expand Down
1 change: 1 addition & 0 deletions _pubs/hydragen.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ authors:
affiliation: Stanford
- key: azaliamirhoseini
venue: preprint
venue_txt: ES-FoMo-II @ICML 2024
year: 2024
date: 2024-02-07
has_pdf: true
Expand Down
1 change: 1 addition & 0 deletions _pubs/kernelbench.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ authors:
affiliation: Stanford
- key: azaliamirhoseini
venue: icml
venue_txt: DL4C (Best Paper) & SSI-FM @ ICLR 2025
year: 2025
date: 2025-02-18
has_pdf: true
Expand Down
1 change: 1 addition & 0 deletions _pubs/monkeyspower.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ authors:
- name: Sanmi Koyejo
affiliation: Stanford University
venue: icml
venue_txt: Oral
year: 2025
date: 2025-02-24
month: February
Expand Down
3 changes: 2 additions & 1 deletion _pubs/sdgrl.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ authors:
affiliation: Google DeepMind
- name: Christopher D. Manning
affiliation: Stanford University
venue: preprint
venue: colm
venue_txt:
year: 2025
date: 2025-04-28
month: April
Expand Down
1 change: 1 addition & 0 deletions _pubs/tpt.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ authors:
affiliation: Stanford University
- key: azaliamirhoseini
venue: lad
venue_txt: SSI-FM @ICLR 2025
year: 2025
date: 2025-04-25
month: April
Expand Down
1 change: 1 addition & 0 deletions _pubs/weaver.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ authors:
- name: Christopher Ré
affiliation: Stanford University
venue: neurips
venue_txt: ES-FoMo III @ICML 2025
year: 2025
date: 2025-06-24
has_pdf: true
Expand Down
7 changes: 6 additions & 1 deletion pubs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,16 @@ layout: page
{% endfor %}
</p>
<p class="venue">
{% if pub.preprint %}
{% if pub.venue == "preprint" and pub.venue_txt and pub.venue_txt != '' %}
{{pub.venue_txt}}
{% elsif pub.preprint %}
{{pub.preprint.server}}: {{pub.preprint.id}}
{% else %}
{{site.data.venues[pub.venue].full}}, {{pub.year}}
{% endif %}
{% if pub.venue != "preprint" and pub.venue_txt and pub.venue_txt != '' %}
<br>{{pub.venue_txt}}
{% endif %}
</p>
{% if pub.award %}
<p class="award">
Expand Down