Files
Webserver/app/projects/graph-attention-topology/page.tsx

308 lines
13 KiB
TypeScript
Raw Normal View History

2026-05-25 10:05:58 -04:00
import Image from "next/image";
import Link from "next/link";
import type { Metadata } from "next";
import architectureImage from "@/public/images/graph-attention-topology/model-architecture.png";
import simulationImage from "@/public/images/graph-attention-topology/simulation-dynamics.png";
import resultsImage from "@/public/images/graph-attention-topology/f1-results.png";
import attentionImage from "@/public/images/graph-attention-topology/attention-training.png";
const paperLinks = [
{ href: "https://arxiv.org/abs/2408.15449", label: "arXiv" },
{ href: "https://arxiv.org/pdf/2408.15449", label: "PDF" },
{ href: "https://doi.org/10.48550/arXiv.2408.15449", label: "DOI" },
];
const highlights = [
{
2026-06-08 19:31:19 -04:00
value: "No graph labels",
label: "Learns from trajectories without seeing adjacency examples.",
2026-05-25 10:05:58 -04:00
},
{
value: "Unknown dynamics",
2026-06-08 19:31:19 -04:00
label: "Works from observed state sequences, not hand-written dynamics.",
2026-05-25 10:05:58 -04:00
},
{
2026-06-08 19:31:19 -04:00
value: "Attention becomes edges",
label: "Uses attention scores as the topology estimate.",
2026-05-25 10:05:58 -04:00
},
];
const steps = [
2026-06-08 19:31:19 -04:00
"Put each agent in a shared latent space.",
"Build key/query pairs and compute attention between agents.",
"Use observed states as the values passed through attention.",
"Forecast the next state, then threshold attention to recover topology.",
2026-05-25 10:05:58 -04:00
];
export const metadata: Metadata = {
title: "Graph Attention Topology Inference",
description:
2026-06-08 19:31:19 -04:00
"A project page for inferring hidden multi-agent network topology with graph attention.",
2026-05-25 10:05:58 -04:00
openGraph: {
title: "Graph Attention Inference of Network Topology in Multi-Agent Systems",
description:
2026-06-08 19:31:19 -04:00
"Inferring hidden network topology from multi-agent trajectories with graph attention.",
2026-05-25 10:05:58 -04:00
type: "article",
publishedTime: "2024-10-26",
images: [
{
url: "/images/graph-attention-topology/model-architecture.png",
width: architectureImage.width,
height: architectureImage.height,
alt: "Graph attention model architecture",
},
],
},
};
function ExternalLink({ href, label }: { href: string; label: string }) {
return (
<a
href={href}
target="_blank"
rel="noopener noreferrer"
className="rounded-full border border-graph-line bg-graph-panel px-4 py-2 text-sm font-medium text-graph-ink transition-colors hover:border-graph-accent hover:text-graph-accent"
>
{label}
</a>
);
}
function Figure({
src,
alt,
caption,
className = "",
}: {
src: typeof architectureImage;
alt: string;
caption: string;
className?: string;
}) {
return (
<figure className={`overflow-hidden border border-graph-line bg-graph-panel ${className}`}>
<div className="bg-white">
<Image
src={src}
alt={alt}
sizes="(max-width: 768px) 100vw, 58rem"
className="h-auto w-full"
/>
</div>
<figcaption className="border-t border-graph-line px-4 py-3 font-mono text-[0.72rem] leading-5 text-graph-muted">
{caption}
</figcaption>
</figure>
);
}
export default function GraphAttentionProjectPage() {
return (
<div className="graph-project min-h-screen bg-graph-paper text-graph-ink">
<section className="graph-hero px-5 pb-14 pt-24 sm:px-6 sm:pb-20 sm:pt-28">
<div className="mx-auto grid max-w-[78rem] gap-10 lg:grid-cols-[minmax(0,1fr)_minmax(23rem,32rem)] lg:items-end">
<div className="space-y-7">
<div className="flex flex-wrap items-center gap-3 font-mono text-[0.72rem] uppercase text-graph-muted">
<Link href="/projects" className="transition-colors hover:text-graph-accent">
Projects
</Link>
<span className="h-px w-8 bg-graph-line" />
<span>MECC 2024</span>
<span className="h-px w-8 bg-graph-line" />
<span>Multi-Agent Systems</span>
</div>
<div className="space-y-5">
<h1 className="max-w-[54rem] text-balance font-sans text-[clamp(3.1rem,8vw,7.6rem)] font-semibold leading-[0.86] tracking-normal text-graph-ink">
Graph Attention Inference of Network Topology
</h1>
<p className="max-w-[43rem] text-[1.12rem] leading-8 text-graph-soft sm:text-[1.25rem]">
2026-06-08 19:31:19 -04:00
We use next-state prediction to expose the interaction graph behind a multi-agent system.
2026-05-25 10:05:58 -04:00
</p>
</div>
<div className="flex flex-wrap gap-2 text-[0.95rem] text-graph-soft">
<span>Akshay Kolli</span>
<span>/</span>
<span>Reza Azadeh</span>
<span>/</span>
<span>Kshitij Jerath</span>
</div>
<div className="flex flex-wrap gap-3">
{paperLinks.map((link) => (
<ExternalLink key={link.href} {...link} />
))}
</div>
</div>
<div className="graph-hero-card">
<div className="graph-card-top">
<span>attention matrix</span>
<span>unknown graph</span>
</div>
<div className="grid grid-cols-[1fr_auto] gap-4 p-4">
<div className="graph-matrix" aria-hidden>
{Array.from({ length: 36 }).map((_, index) => (
<span
key={index}
className={(index % 7 === 0 || [2, 11, 15, 22, 29, 34].includes(index)) ? "is-hot" : ""}
/>
))}
</div>
<div className="flex flex-col justify-between py-1 font-mono text-[0.68rem] uppercase text-graph-muted">
<span>query</span>
<span>key</span>
<span>edge</span>
</div>
</div>
<div className="border-t border-graph-line bg-white p-3">
<Image
src={architectureImage}
alt="Graph attention model architecture"
priority
sizes="(max-width: 1024px) 92vw, 32rem"
className="mx-auto h-auto max-h-[30rem] w-auto"
/>
</div>
</div>
</div>
</section>
<section className="border-y border-graph-line bg-graph-panel px-5 py-5 sm:px-6">
<div className="mx-auto grid max-w-[78rem] gap-4 md:grid-cols-3">
{highlights.map((item) => (
<div key={item.value} className="space-y-2 border-l border-graph-line pl-4">
<p className="text-[1.05rem] font-semibold text-graph-ink">{item.value}</p>
<p className="text-[0.92rem] leading-6 text-graph-muted">{item.label}</p>
</div>
))}
</div>
</section>
<div className="mx-auto max-w-[78rem] px-5 py-14 sm:px-6 sm:py-20">
<div className="grid gap-12 lg:grid-cols-[14rem_minmax(0,1fr)] lg:gap-16">
<aside className="hidden lg:block">
<nav className="sticky top-24 space-y-3 font-mono text-[0.72rem] uppercase text-graph-muted">
<a href="#overview" className="block transition-colors hover:text-graph-accent">Overview</a>
<a href="#method" className="block transition-colors hover:text-graph-accent">Method</a>
<a href="#results" className="block transition-colors hover:text-graph-accent">Results</a>
<a href="#citation" className="block transition-colors hover:text-graph-accent">Citation</a>
</nav>
</aside>
<div className="space-y-20">
<section id="overview" className="grid gap-8 lg:grid-cols-[minmax(0,0.9fr)_minmax(18rem,0.7fr)]">
<div className="space-y-5">
<p className="graph-kicker">Overview</p>
<h2 className="max-w-[42rem] text-balance text-4xl font-semibold leading-tight text-graph-ink sm:text-5xl">
2026-06-08 19:31:19 -04:00
Train on motion. Read the graph from attention.
2026-05-25 10:05:58 -04:00
</h2>
<div className="space-y-5 text-[1.02rem] leading-8 text-graph-soft">
<p>
2026-06-08 19:31:19 -04:00
In many multi-agent systems, you can watch agents move, synchronize, or settle, but you are not given who influences whom.
2026-05-25 10:05:58 -04:00
</p>
<p>
2026-06-08 19:31:19 -04:00
This project tests whether a predictor trained on trajectories can recover that missing adjacency matrix. On consensus dynamics and Kuramoto oscillators, the learned attention scores become a usable proxy for edges.
2026-05-25 10:05:58 -04:00
</p>
</div>
</div>
<Figure
src={simulationImage}
alt="Consensus and Kuramoto simulation examples with adjacency matrices"
2026-06-08 19:31:19 -04:00
caption="Consensus and Kuramoto trajectories, each paired with the hidden adjacency matrix used for simulation."
2026-05-25 10:05:58 -04:00
className="rounded-md"
/>
</section>
<section id="method" className="space-y-8">
<div className="grid gap-8 lg:grid-cols-[minmax(0,0.8fr)_minmax(0,1fr)] lg:items-start">
<div className="space-y-5">
<p className="graph-kicker">Method</p>
<h2 className="text-balance text-4xl font-semibold leading-tight text-graph-ink sm:text-5xl">
2026-06-08 19:31:19 -04:00
The graph is never supervised directly.
2026-05-25 10:05:58 -04:00
</h2>
<p className="text-[1.02rem] leading-8 text-graph-soft">
2026-06-08 19:31:19 -04:00
The model learns the dynamics first. After training, we threshold the attention matrix and compare the inferred edges with the true graph.
2026-05-25 10:05:58 -04:00
</p>
</div>
<ol className="grid gap-3">
{steps.map((step, index) => (
<li key={step} className="flex gap-4 border-t border-graph-line py-4">
<span className="font-mono text-sm text-graph-accent">
{(index + 1).toString().padStart(2, "0")}
</span>
<span className="text-[1rem] leading-7 text-graph-soft">{step}</span>
</li>
))}
</ol>
</div>
<Figure
src={architectureImage}
alt="Architecture diagram showing agent embeddings, key-query attention, values, predictions, and loss"
2026-06-08 19:31:19 -04:00
caption="Model layout: embeddings create key/query vectors, states provide values, and attention is later read as adjacency."
2026-05-25 10:05:58 -04:00
className="rounded-md"
/>
</section>
<section id="results" className="space-y-8">
<div className="max-w-[46rem] space-y-5">
<p className="graph-kicker">Results</p>
<h2 className="text-balance text-4xl font-semibold leading-tight text-graph-ink sm:text-5xl">
2026-06-08 19:31:19 -04:00
Smaller systems recover cleanly; larger ones improve with more simulations.
2026-05-25 10:05:58 -04:00
</h2>
<p className="text-[1.02rem] leading-8 text-graph-soft">
2026-06-08 19:31:19 -04:00
F1 scores beat a random baseline for both dynamics. Consensus is the easier case; Kuramoto needs more data as the number of agents grows.
2026-05-25 10:05:58 -04:00
</p>
</div>
<Figure
src={resultsImage}
alt="F1 score results for consensus dynamics and Kuramoto oscillators"
2026-06-08 19:31:19 -04:00
caption="F1 link-prediction results across system size and simulation count."
2026-05-25 10:05:58 -04:00
className="rounded-md"
/>
<div className="grid gap-6 md:grid-cols-[minmax(0,0.78fr)_minmax(0,1fr)] md:items-start">
<div className="rounded-md border border-graph-line bg-graph-panel p-5">
2026-06-08 19:31:19 -04:00
<p className="font-mono text-[0.72rem] uppercase text-graph-muted">training trace</p>
2026-05-25 10:05:58 -04:00
<p className="mt-3 text-[1.02rem] leading-8 text-graph-soft">
2026-06-08 19:31:19 -04:00
Early training mostly finds self-dependencies. Later epochs start assigning weight to the agent-to-agent links.
2026-05-25 10:05:58 -04:00
</p>
</div>
<Figure
src={attentionImage}
alt="Attention matrices over training epochs and predicted graphs"
2026-06-08 19:31:19 -04:00
caption="Attention during training, from the true graph reference to the final predicted graph."
2026-05-25 10:05:58 -04:00
className="rounded-md"
/>
</div>
</section>
<section id="citation" className="space-y-5 border-t border-graph-line pt-10">
<p className="graph-kicker">Citation</p>
<h2 className="text-3xl font-semibold leading-tight text-graph-ink">Paper</h2>
<p className="max-w-[46rem] text-[1.02rem] leading-8 text-graph-soft">
Graph Attention Inference of Network Topology in Multi-Agent Systems. Akshay Kolli, Reza Azadeh, and Kshitij Jerath. Accepted at the Modeling and Estimation Control Conference, 2024.
</p>
<pre className="overflow-x-auto rounded-md border border-graph-line bg-graph-code p-5 text-sm leading-7 text-graph-code-text">
{`@misc{kolli2024graphattentioninference,
title={Graph Attention Inference of Network Topology in Multi-Agent Systems},
author={Kolli, Akshay and Azadeh, Reza and Jerath, Kshitij},
year={2024},
eprint={2408.15449},
archivePrefix={arXiv},
primaryClass={cs.MA}
}`}
</pre>
</section>
</div>
</div>
</div>
</div>
);
}