Skip to content

Commit 281d41e

Browse files
Merge pull request #19 from ScalingIntelligence/fix-themes
Fix themes
2 parents 103ccde + 1c409da commit 281d41e

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

_data/research_themes.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@
2020

2121
- key: scalable_intelligence
2222
name: Scalable Intelligence
23-
url: /pubs/#tag=scaling_intelligence
24-
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
23+
url: /pubs/
24+
people:
2525
desc: >
2626
We build new AI systems that scale robustly across data, parameters, and compute.
2727
2828
- key: aosi
2929
name: Agentic Optimization and Self-Improvement
30-
url: /pubs/#tag=aosi
31-
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
30+
url: /pubs/
31+
people:
3232
desc: >
3333
We create agentic frameworks that enable machines to learn from their worldly interactions and experiences, enabling advanced reasoning and planning.
3434
3535
- key: avb
3636
name: Automated Verifiers and Benchmarks
37-
url: /pubs/#tag=avb
38-
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
37+
url: /pubs/
38+
people:
3939
desc: >
4040
We design methods and frameworks for automated evaluation and benchmarking.
4141
4242
- key: assa
4343
name: AI for Systems and Systems for AI
44-
url: /pubs/#tag=assa
45-
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
44+
url: /pubs/
45+
people:
4646
desc: >
4747
We design efficient systems for AI training and serving, with a particular interest in using AI itself as the optimization engine.

_includes/head.html

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,26 @@
3838
for (const person of people) person.style.opacity = 1;
3939
}
4040

41-
for (const theme of document.querySelectorAll('.theme')) {
42-
theme.addEventListener('click', () => window.location = theme.getAttribute('data-url'));
41+
// Do not highlight specific people when hovering over themes.
42+
// for (const theme of document.querySelectorAll('.theme')) {
43+
// theme.addEventListener('click', () => window.location = theme.getAttribute('data-url'));
4344

44-
if (!sm) {
45-
theme.addEventListener('mouseout', showAllPeople);
46-
theme.addEventListener('mouseover', () => {
47-
const people = theme.getAttribute('data-people').split(', ');
48-
for (const person of document.querySelectorAll('.person')) {
49-
if (people.indexOf(person.id) >= 0) continue;
50-
person.style.opacity = 0.3;
51-
}
45+
// if (!sm) {
46+
// theme.addEventListener('mouseout', showAllPeople);
47+
// theme.addEventListener('mouseover', () => {
48+
// const people = theme.getAttribute('data-people').split(', ');
49+
// for (const person of document.querySelectorAll('.person')) {
50+
// if (people.indexOf(person.id) >= 0) continue;
51+
// person.style.opacity = 0.3;
52+
// }
5253

53-
for (const video of videos) {
54-
if (video.parentElement === theme) video.play();
55-
else video.pause();
56-
}
57-
});
58-
}
59-
}
54+
// for (const video of videos) {
55+
// if (video.parentElement === theme) video.play();
56+
// else video.pause();
57+
// }
58+
// });
59+
// }
60+
// }
6061
{% else %}
6162
const sess = window.sessionStorage;
6263
let v = sess.getItem('visited') || false;

0 commit comments

Comments
 (0)