Skip to content

Commit 37ad9b5

Browse files
committed
Make badges and authors more user-friendly
1 parent f4a291e commit 37ad9b5

File tree

4 files changed

+52
-30
lines changed

4 files changed

+52
-30
lines changed

app/projects/hybrid/page.mdx

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
1-
import { AuthorList } from '@/components/utils'
2-
import { BadgeContainer, GithubBadge, ArxivBadge, PdfBadge, VenueBadge } from '@/components/badges'
1+
import { Authors } from '@/components/utils'
2+
import { Badges } from '@/components/badges'
33

44
# Learning High-Order Relationships of Brain Regions
55

6-
<AuthorList
7-
authors={[
8-
{ name: "Weikang Qiu", affiliation: "Yale University" },
9-
{ name: "Huangrui Chu", affiliation: "Yale University" },
10-
{ name: "Selena Wang", affiliation: "Yale University" },
11-
{ name: "Haolan Zuo", affiliation: "Yale University" },
12-
{ name: "Xiaoxiao Li", affiliation: "University of British Columbia" },
13-
{ name: "Rex Ying", affiliation: "Yale University" }
14-
]}
6+
<Authors
7+
authors="Weikang Qiu, Yale University; Huangrui Chu, Yale University; Selena Wang, Yale University; Haolan Zuo, Yale University; Xiaoxiao Li, University of British Columbia; Rex Ying, Yale University"
8+
/>
9+
10+
<Badges
11+
venue="ICML 2024"
12+
github="https://github.com/Graph-and-Geometric-Learning/HyBRiD"
13+
arxiv="https://arxiv.org/abs/2312.02203"
14+
pdf="https://arxiv.org/pdf/2312.02203"
1515
/>
1616

17-
<BadgeContainer>
18-
<VenueBadge venue="ICML 2024" />
19-
<GithubBadge link="https://github.com/Graph-and-Geometric-Learning/HyBRiD" />
20-
<ArxivBadge link="https://arxiv.org/abs/2312.02203" />
21-
<PdfBadge link="https://arxiv.org/pdf/2312.02203" />
22-
</BadgeContainer>
2317

2418
## Introduction
2519
Discovering reliable and informative relationships among brain regions from functional magnetic resonance imaging (fMRI) signals is essential in phenotypic predictions. Most of the current methods fail to accurately characterize those interactions because they only focus on pairwise connections and overlook the high-order relationships of brain regions. We propose that these high-order relationships should be maximally informative and minimally redundant (MIMR). However, identifying such high-order relationships is challenging and under-explored due to the exponential search space and the absence of a tractable objective. In response to this gap, we propose a novel method named **HyBRiD** which aims to extract MIMR high-order relationships from fMRI data. **HyBRiD** employs a **CONSTRUCTOR** to identify hyperedge structures, and a **WEIGHTER** to compute a weight for each hyperedge, which avoids searching in exponential space. **HyBRiD** achieves the MIMR objective through an innovative information bottleneck framework named multi-head drop-bottleneck with theoretical guarantees. Our comprehensive experiments demonstrate the effectiveness of our model. Our model outperforms the state-of-the-art predictive model by an average of $11.2\%$, regarding the quality of hyperedges measured by CPM, a standard protocol for studying brain connections.

app/projects/mage/page.mdx

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
1-
import { AuthorList } from '@/components/utils'
2-
import { BadgeContainer, GithubBadge, ArxivBadge } from '@/components/badges'
1+
import { Authors } from '@/components/utils'
2+
import { Badges } from '@/components/badges'
33

44
# Explaining Graph Neural Networks via Structure-aware Interaction Index
55

6-
<AuthorList
7-
authors={[
8-
{ name: "Ngoc Bui", affiliation: "Yale University" },
9-
{ name: "Hieu Trung Nguyen", affiliation: "VinAI Research" },
10-
{ name: "Viet Anh Nguyen", affiliation: "The Chinese University of HongKong" },
11-
{ name: "Rex Ying", affiliation: "Yale University" }
12-
]}
6+
<Authors
7+
authors="Ngoc Bui, Yale University; Hieu Trung Nguyen, VinAI Research; Viet Anh Nguyen, The Chinese University of Hong Kong; Rex Ying, Yale University"
138
/>
149

15-
<BadgeContainer>
16-
<GithubBadge link="https://github.com/ngocbh/MAGE" />
17-
<ArxivBadge link="https://arxiv.org/abs/2405.14352" />
18-
</BadgeContainer>
10+
<Badges
11+
venue="ICML 2024"
12+
github="https://github.com/ngocbh/MAGE"
13+
arxiv="https://arxiv.org/abs/2405.14352"
14+
pdf="https://arxiv.org/pdf/2405.14352"
15+
/>
1916

2017
In this project, we aim to explore graph-theoretic-based attribution scores for explaining graph neural networks (GNNs). Prior work (GStarX, SubgraphX, SAME) has successfully applied solutions such as Shapley values and HN values to explain GNNs. However, several limitations remain:
2118

components/badges.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,25 @@ export const BadgeContainer = ({ children }: { children: ReactNode }) => {
5151
{children}
5252
</div>
5353
);
54+
}
55+
56+
export function Badges({
57+
github,
58+
arxiv,
59+
pdf,
60+
venue,
61+
}: {
62+
venue?: string;
63+
github?: string;
64+
arxiv?: string;
65+
pdf?: string;
66+
}) {
67+
return (
68+
<BadgeContainer>
69+
{venue && <VenueBadge venue={venue} />}
70+
{github && <GithubBadge link={github} />}
71+
{arxiv && <ArxivBadge link={arxiv} />}
72+
{pdf && <PdfBadge link={pdf} />}
73+
</BadgeContainer>
74+
);
5475
}

components/utils.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,14 @@ export function AuthorList({ authors }: { authors: Author[] }) {
3232
</div>
3333
</div>
3434
);
35+
}
36+
37+
38+
export function Authors({ authors }: { authors: string }) {
39+
// authors in the format: author1, affliation1; author2, affiliation2; ...
40+
const authorList = authors.split(';').map(author => {
41+
const [name, affiliation] = author.split(',');
42+
return { name: name.trim(), affiliation: affiliation.trim() };
43+
});
44+
return <AuthorList authors={authorList} />;
3545
}

0 commit comments

Comments
 (0)