Skip to content

Commit

Permalink
Merge pull request #19 from ScalingIntelligence/fix-themes
Browse files Browse the repository at this point in the history
Fix themes
  • Loading branch information
BradleyBrown19 authored Jan 28, 2025
2 parents 103ccde + 1c409da commit 281d41e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 25 deletions.
16 changes: 8 additions & 8 deletions _data/research_themes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@

- key: scalable_intelligence
name: Scalable Intelligence
url: /pubs/#tag=scaling_intelligence
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
url: /pubs/
people:
desc: >
We build new AI systems that scale robustly across data, parameters, and compute.
- key: aosi
name: Agentic Optimization and Self-Improvement
url: /pubs/#tag=aosi
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
url: /pubs/
people:
desc: >
We create agentic frameworks that enable machines to learn from their worldly interactions and experiences, enabling advanced reasoning and planning.
- key: avb
name: Automated Verifiers and Benchmarks
url: /pubs/#tag=avb
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
url: /pubs/
people:
desc: >
We design methods and frameworks for automated evaluation and benchmarking.
- key: assa
name: AI for Systems and Systems for AI
url: /pubs/#tag=assa
people: azaliamirhoseini, jordanjuravsky, jonsaadfalcon
url: /pubs/
people:
desc: >
We design efficient systems for AI training and serving, with a particular interest in using AI itself as the optimization engine.
35 changes: 18 additions & 17 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,26 @@
for (const person of people) person.style.opacity = 1;
}

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

if (!sm) {
theme.addEventListener('mouseout', showAllPeople);
theme.addEventListener('mouseover', () => {
const people = theme.getAttribute('data-people').split(', ');
for (const person of document.querySelectorAll('.person')) {
if (people.indexOf(person.id) >= 0) continue;
person.style.opacity = 0.3;
}
// if (!sm) {
// theme.addEventListener('mouseout', showAllPeople);
// theme.addEventListener('mouseover', () => {
// const people = theme.getAttribute('data-people').split(', ');
// for (const person of document.querySelectorAll('.person')) {
// if (people.indexOf(person.id) >= 0) continue;
// person.style.opacity = 0.3;
// }

for (const video of videos) {
if (video.parentElement === theme) video.play();
else video.pause();
}
});
}
}
// for (const video of videos) {
// if (video.parentElement === theme) video.play();
// else video.pause();
// }
// });
// }
// }
{% else %}
const sess = window.sessionStorage;
let v = sess.getItem('visited') || false;
Expand Down

0 comments on commit 281d41e

Please sign in to comment.