Skip to content

Commit 7755972

Browse files
committed
Merge
2 parents 1fc0f85 + 678a1fc commit 7755972

File tree

6 files changed

+40
-16
lines changed

6 files changed

+40
-16
lines changed

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function RootLayout({
4444
<Providers themeProps={{ attribute: "class", defaultTheme: "dark" }}>
4545
<div className="relative flex flex-col h-screen">
4646
<Navbar />
47-
<main className="container mx-auto max-w-full pt-4 px-6 flex-grow">
47+
<main className="container mx-auto max-w-6xl pt-4 px-6 flex-grow">
4848
{children}
4949
</main>
5050
{/* <footer className="w-full flex items-center justify-center py-3">

app/publications/page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ export default function PublicationsPage() {
1010
{publications.map((publication) => (
1111
<li key={publication.title}>
1212
[{publication.venue}] {publication.title}. {publication.authors}.
13-
14-
<ApplicationTag />
13+
<ApplicationTag tag={publication.tag} />
14+
<p>{publication.abstract}</p>
15+
<p>{publication.impact}</p>
1516
</li>
1617
))}
1718
</ul>

components/tag.tsx

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,26 @@
22

33
import { Chip } from "@nextui-org/chip";
44
import React from "react";
5+
import { Tag } from "@/config/publications"
56

6-
function Tag({ name, color }: { name: string; color: string }) {
7-
return (
8-
<Chip style={{ backgroundColor: color }}>
9-
{name}
10-
</Chip>
11-
);
12-
}
137

14-
function ApplicationTag() {
15-
return <Tag name="Application" color="#FFAA60" />
8+
function ApplicationTag({ tag } : { tag: Tag }) {
9+
let name
10+
let color
11+
console.log(tag)
12+
switch (tag) {
13+
case Tag.Application:
14+
name = "Application"
15+
color = "#ffe119"
16+
break
17+
case Tag.TrustworthyAI:
18+
name = "Trustworthy AI"
19+
color = "#3cb444b"
20+
break
21+
}
22+
return <><Chip style={{ backgroundColor: color }}>
23+
{name}
24+
</Chip></>
1625
}
1726

1827
export { ApplicationTag };

config/people.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ export const peopleList = {
6666
},
6767
{
6868
name: "Yangtian Zhang",
69-
intro: "<Bio>",
70-
homepage: "https://google.com",
71-
photo: "/people/no_avt.png",
69+
intro: "My research interests are focused on Generative Models, Graph Algorithms, and, more recently, Multi-Modal Foundation Models. Currently, I am exploring innovative solutions for real-world applications and scientific challenges.",
70+
homepage: "https://zytzrh.github.io/",
71+
photo: "people/yangtian.png",
7272
},
7373
],
7474
"masters_and_undergrad": [

config/publications.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export enum Tag {
2-
GraphLearning = "Graph Learning",
2+
GraphRepresentationLearning = "Graph Representation Learning",
3+
TrustworthyAI = "Trustworthy AI",
34
Application = "Application",
45
}
56

@@ -22,5 +23,18 @@ export const publications = [
2223
paper: "https://arxiv.org/abs/2312.02203",
2324
code: "https://github.com/Graph-and-Geometric-Learning/HyBRiD",
2425
tag: Tag.Application,
26+
abstract: "Traditional methods only focus on pariwise connectivity of brain regions. We proposed a new framework based on information bottleneck that learns high-order relationships of brain regions.",
27+
impact: "The learned high-order relationships achieve SOTA performance on predictive tasks and are demonstrated significantly more effective than traditional pairwise methods.",
28+
},
29+
{
30+
title: "D4Explainer: In-distribution explanations of graph neural network via discrete denoising diffusion",
31+
authors: "Jialin Chen, Shirley Wu, Abhijit Gupta, Rex Ying",
32+
venue: "NeurIPS 2023",
33+
page: null,
34+
paper: "https://proceedings.neurips.cc/paper_files/paper/2023/hash/f978c8f3b5f399cae464e85f72e28503-Abstract-Conference.html",
35+
code: "https://github.com/Graph-and-Geometric-Learning/D4Explainer",
36+
tag: Tag.TrustworthyAI,
37+
abstract: "We propose D4Explainer, a novel approach that provides in-distribution GNN explanations for both counterfactual and model-level explanation scenarios.",
38+
impact: "D4Explainer is the first unified framework that combines both counterfactual and model-level explanations. Empirical evaluations on synthetic and real-world datasets demonstrate the state-of-the-art performance achieved by D4Explainer in terms of explanation accuracy, faithfulness, diversity, and robustness."
2539
}
2640
]

public/people/yangtian.png

882 KB
Loading

0 commit comments

Comments
 (0)