Skip to content

Commit a06b328

Browse files
committed
add courses etc
1 parent b4e0627 commit a06b328

File tree

4 files changed

+52
-2
lines changed

4 files changed

+52
-2
lines changed

_data/courses.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
- key: cs229s
2+
name: CS229S - Systems for Machine Learning
3+
url: https://cs229s.stanford.edu/fall2024/
4+
people:
5+
desc: >
6+
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.
7+
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/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ caiacostello:
107107
url: https://www.linkedin.com/in/caia-costello-5b4064216
108108
title: Master's Researcher
109109
alumni: true
110-
next: Lambda
110+
next: Lambda Labs
111111

112112
adriangamarralafuente:
113113
name: Adrian Gamarra Lafuente

_sass/people.scss

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,42 @@
7474
border-bottom: 1px solid rgba($csail-orange, 0.5);
7575
}
7676

77+
#students {
78+
.person-name {
79+
padding-right: 1em;
80+
}
81+
82+
a {
83+
color: #000;
84+
85+
&:hover {
86+
color: #333;
87+
text-decoration: underline;
88+
}
89+
}
90+
}
91+
7792
#alumni {
7893
margin: 0;
7994
padding: 0;
8095
list-style: none;
8196

97+
li {
98+
padding-right: 1em;
99+
}
100+
82101
li a {
83102
display: flex;
84103
align-items: center;
85104
text-align: left;
86105
padding: 0.5em 0 0.25em 0;
87106
border-bottom: 1px solid rgba($csail-orange, 0.5);
107+
color: #000;
108+
109+
&:hover {
110+
color: #333;
111+
text-decoration: underline;
112+
}
88113

89114
.name {
90115
font-weight: normal;

index.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ home: true
3131
</div>
3232
</div>
3333
{% endfor %}
34+
35+
<h2 style="margin-top: 2em;">Courses</h2>
36+
{% for course in site.data.courses %}
37+
<div id="course-{{course.key}}" class="theme" style="cursor: pointer;" onclick="window.open('{{course.url}}', '_blank')">
38+
<div style="padding-top: 0px; border-radius: 5px; margin-bottom: 0px;">
39+
<div class="content">
40+
<h3>{{course.name}}</h3>
41+
{{course.desc | markdownify}}
42+
</div>
43+
</div>
44+
</div>
45+
{% endfor %}
3446
</div>
3547

3648
<div class="pure-u-1 pure-u-md-2-5">
@@ -79,7 +91,7 @@ home: true
7991
{% assign alumni = site.data.people | filter_alumni: true | sort_people: 'PhD, Postdoctoral, Scientist' %}
8092
{% for person in alumni %}
8193
<li id="{{person[0]}}" class="person pure-u-1-2" style="margin-bottom: 8px;">
82-
<a href="{{person[1].url}}" style="border-bottom: none; display: inline;">{{person[1].name}}</a>{% if person[1].next %} ({{person[1].next}}){% endif %}
94+
<a href="{{person[1].url}}" style="border-bottom: none; display: inline;">{{person[1].name}}</a> ({{person[1].title}}{% if person[1].next %}, Next: {{person[1].next}}{% endif %})
8395
</li>
8496
{% endfor %}
8597
</ul>

0 commit comments

Comments
 (0)