Skip to content

Commit 7f90898

Browse files
committed
add conference venues that i know of past papers
1 parent a06b328 commit 7f90898

File tree

10 files changed

+60
-23
lines changed

10 files changed

+60
-23
lines changed

_data/courses.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
- key: cs329a
2+
name: CS329A - Self-Improving AI Agents
3+
url: https://cs329a.stanford.edu/
4+
people:
5+
desc: >
6+
This course covers the latest techniques and applications of AI agents that can continuously improve themselves through interaction with themselves and the environment.
7+
18
- key: cs229s
29
name: CS229S - Systems for Machine Learning
310
url: https://cs229s.stanford.edu/fall2024/
411
people:
512
desc: >
613
This course focuses on performance efficiency and scalability of deep learning systems, covering efficient training, fine-tuning, and inference with an emphasis on Transformer architectures and LLMs.
714
8-
- key: cs329a
9-
name: CS329A - Self-Improving AI Agents
10-
url: https://cs329a.stanford.edu/
11-
people:
12-
desc: >
13-
This course covers the latest techniques and applications of AI agents that can continuously improve themselves through interaction with themselves and the environment.

_data/venues.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,21 @@ asplos:
9494
bibtex:
9595
type: inproceedings
9696
venue: booktitle
97+
date:
98+
full: Design, Automation and Test in Europe Conference and Exhibition
99+
bibtex:
100+
type: inproceedings
101+
venue: booktitle
102+
nature:
103+
full: Nature
104+
bibtex:
105+
type: article
106+
venue: publisher
107+
anthropic:
108+
full: Anthropic
109+
bibtex:
110+
type: article
111+
venue: publisher
97112
arxiv:
98113
short: arXiv
99114
full: arXiv preprint

_pubs/constitutionalai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ authors:
5353
- name: Tom Brown
5454
- name: Jared Kaplan
5555

56-
venue: preprint
56+
venue: anthropic
5757
year: 2022
5858
date: 2022-12-15
5959
has_pdf: false

_pubs/dla.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors:
77
- name: Joseph Gonzalez
88
- name: Ion Stoica
99
- key: azaliamirhoseini
10-
venue: preprint
10+
venue: date
1111
year: 2022
1212
date: 2022-05-22
1313
has_pdf: false

_pubs/dpo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors:
1313
- name: Mohammad Norouzi
1414
- name: Samy Bengio
1515
- name: Jeff Dean
16-
venue: preprint
16+
venue: icml
1717
year: 2017
1818
date: 2017-06-13
1919
has_pdf: false

_pubs/gpm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ authors:
2424
- name: Roger Carpenter
2525
- name: Jeff Dean
2626

27-
venue: preprint
27+
venue: nature
2828
year: 2021
2929
date: 2021-04-13
3030
has_pdf: false

_pubs/hmdp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors:
99
- name: Benoit Steiner
1010
- name: Quoc V. Le
1111
- name: Jeff Dean
12-
venue: preprint
12+
venue: iclr
1313
year: 2018
1414
date: 2018-02-15
1515
has_pdf: false

_pubs/rlrc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors:
77
- key: azaliamirhoseini
88
- name: Joseph E. Gonzalez
99
- name: Ion Stocia
10-
venue: preprint
10+
venue: neurips
1111
year: 2021
1212
date: 2021-01-21
1313
has_pdf: true

_pubs/tgo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors:
1313
- name: Anna Goldie
1414
- key: azaliamirhoseini
1515
- name: James Laudon
16-
venue: preprint
16+
venue: neurips
1717
year: 2020
1818
date: 2020-02-20
1919
has_pdf: false

index.md

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,37 @@ home: true
5858
{% for person in members %}
5959
{% unless person[1].not_current %}
6060
{% unless person[1].title contains 'Master' or person[1].title contains 'Undergraduate' %}
61-
<div id="{{person[0]}}" class="person pure-u-1-4">
62-
<a href="{{person[1].url}}">
63-
<p class="headshot"><img src="/imgs/people/{{person[0]}}.jpg" alt="" /></p>
64-
<p class="name">{{person[1].name}}</p>
65-
<p class="title">{{person[1].title}}</p>
66-
{% if person[1].note %}
67-
<p class="note" style="font-size: 0.85em; color: #666; margin-top: 2px;">{{person[1].note}}</p>
68-
{% endif %}
69-
</a>
70-
</div>
61+
{% unless person[1].on_leave %}
62+
<div id="{{person[0]}}" class="person pure-u-1-4">
63+
<a href="{{person[1].url}}">
64+
<p class="headshot"><img src="/imgs/people/{{person[0]}}.jpg" alt="" /></p>
65+
<p class="name">{{person[1].name}}</p>
66+
<p class="title">{{person[1].title}}</p>
67+
{% if person[1].note %}
68+
<p class="note" style="font-size: 0.85em; color: #666; margin-top: 2px;">{{person[1].note}}</p>
69+
{% endif %}
70+
</a>
71+
</div>
72+
{% endunless %}
73+
{% endunless %}
74+
{% endunless %}
75+
{% endfor %}
76+
<div class="pure-u-1" style="height: 0;"></div>
77+
{% for person in members %}
78+
{% unless person[1].not_current %}
79+
{% unless person[1].title contains 'Master' or person[1].title contains 'Undergraduate' %}
80+
{% if person[1].on_leave %}
81+
<div id="{{person[0]}}" class="person pure-u-1-4">
82+
<a href="{{person[1].url}}">
83+
<p class="headshot"><img src="/imgs/people/{{person[0]}}.jpg" alt="" /></p>
84+
<p class="name">{{person[1].name}}</p>
85+
<p class="title">{{person[1].title}}</p>
86+
{% if person[1].note %}
87+
<p class="note" style="font-size: 0.85em; color: #666; margin-top: 2px;">{{person[1].note}}</p>
88+
{% endif %}
89+
</a>
90+
</div>
91+
{% endif %}
7192
{% endunless %}
7293
{% endunless %}
7394
{% endfor %}

0 commit comments

Comments
 (0)