diff --git a/_data/research_themes.yml b/_data/research_themes.yml index 7badc14..0b7aa9f 100644 --- a/_data/research_themes.yml +++ b/_data/research_themes.yml @@ -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. diff --git a/_includes/head.html b/_includes/head.html index 6a411fb..1203436 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -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;