Skip to content

Commit 65b2b3c

Browse files
committed
preview
1 parent 6d49d44 commit 65b2b3c

File tree

4 files changed

+28
-17
lines changed

4 files changed

+28
-17
lines changed

app/teaching/page.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const courses: Course[] = [
4444
{
4545
id: "CPSC 483/583",
4646
intro:
47-
"Graph structure emerges in many important domain applications, including but not limited to natural sciences, social networks, language, vision and database. This course offers a guide to model real-world data in the form of graphs and apply deep learning algorithms to perform predictive and generative AI tasks. The first part of the course is an introduction to representation learning for graphs, and covers thoery and algorithms in the field, including distributed node embeddings, graph neural networks, deep graph generative models, knowledge graphs and non-Euclidean embeddings. The second part touches upon topics of recent interests including graph Transformers and graph learning explainability. The second part of the course also focuses on the emerging field of graph foundation models. Additionally, the course covers important applications of graph machine learning. We learn ways to model data as graphs and apply graph learning techniques to problems in domains including online recommender systems, knowledge graphs, biological networks, molecular structure and physical simulations. The course covers many deep techniques (graph neural networks, graph deep generative models) catered to graph structures. The course assumes background in basic deep learning and PyTorch programming. We will provide a brief basic deep learning tutorial in this course.",
47+
"This course provides an introduction to machine learning algorithms designed for graph-structured data, such as social networks, knowledge graphs, and molecular structures. The course covers key graph representation learning techniques, such as node embeddings, graph neural networks, deep generative models for graphs, and non-Euclidean embeddings and other practical topics like AutoML and explainability in graph learning. We also explore applications of graph machine learning, showing how to model and apply graph learning techniques to areas such as online recommender systems, knowledge graphs, biological networks, and physical simulations.",
4848
happens: [
4949
{
5050
year: "2024 Fall",
@@ -60,4 +60,15 @@ const courses: Course[] = [
6060
},
6161
],
6262
},
63+
{
64+
id: "CPSC 471/571",
65+
intro:
66+
"This course provides an in-depth exploration of the principles and practices required to build reliable, fair, and secure machine learning systems. As machine learning models become more embedded in critical applications, such as healthcare, finance, and autonomous systems, ensuring their trustworthiness is becoming increasingly essential. The course covers key topics including robustness against adversarial attacks, fairness in algorithmic decision-making, model interpretability, and privacy-preserving techniques such as differential privacy, federated learning and machine unlearning.",
67+
happens: [
68+
{
69+
year: "2024 Spring",
70+
link: "https://graph-and-geometric-learning.github.io/cpsc471-571-website-24spring",
71+
},
72+
],
73+
},
6374
];

components/tag.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ function PublicationTag({ tag }: { tag: Tag }) {
2222
switch (tag) {
2323
case Tag.Applications:
2424
name = "Applications";
25-
color = "#ffe119";
25+
color = "primary";
2626
break;
2727
case Tag.TrustworthyAI:
2828
name = "Trustworthy AI";
29-
color = "#3cb44b";
29+
color = "secondary";
3030
break;
3131
case Tag.MultiModalFoundationModel:
3232
name = "Multi-Modal Foundation Model";
33-
color = "#4363d8";
33+
color = "success";
3434
break;
3535
case Tag.GraphRepresentationLearning:
3636
name = "Graph Representation Learning";
37-
color = "#f58231";
37+
color = "warning";
3838
break;
3939
}
4040

4141
return (
4242
<>
43-
<Chip style={{ backgroundColor: color }}>{name}</Chip>
43+
<Chip color={ color }>{name}</Chip>
4444
</>
4545
);
4646
}

config/people.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const peopleList = {
3333
name: "Borui Wang",
3434
intro: "I am a final-year CS Ph.D. Student working on large language models, natural language processing and machine learning. My main research directions are in large language models, LLM-powered reinforcement learning, knowledge and logical reasoning, neuro-symbolic reasoning, graph neural networks, multimodal language grounding, and applications of LLMs and deep learning in quantitative finance and financial technology.",
3535
homepage: "https://borui-wang.github.io/",
36-
photo: "people/borui.jpg",
36+
photo: "/people/borui.jpg",
3737
},
3838
{
3939
name: "Tinglin Huang",

config/publications.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@ export interface Publication {
1616
}
1717

1818
export const publications = [
19-
{
20-
title: "HEART: Learning Better Representation of EHR Data with a Heterogeneous Relation-Aware Transformer",
21-
authors: "T Huang, SA Rizvi, R Krishna Thakur, V Socrates, M Gupta, D Dijk, RA Taylor, R Ying",
22-
venue: "Preprint",
23-
code: null,
24-
paper: "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4904741",
25-
abstract: "We propose HEART, a pretrained language model for structured EHR data. HEART seamlessly encodes heterogeneous medical entity information through a novel relation embedding module and a multi-level attention scheme.",
26-
impact: "This novel pretrained framework, featuring a new architecture and dedicated objectives, can inspire future research on foundation models in EHR.",
27-
tags: [Tag.Applications],
28-
},
2919
{
3020
title: "Protein-Nucleic Acid Complex Modeling with Frame Averaging Transformer",
3121
authors: "Tinglin Huang, Zhenqiao Song, Rex Ying, Wengong Jin",
@@ -60,6 +50,16 @@ export const publications = [
6050
impact:
6151
"The learned high-order relationships achieve SOTA performance on predictive tasks and are demonstrated significantly more effective than traditional pairwise methods.",
6252
},
53+
{
54+
title: "HEART: Learning Better Representation of EHR Data with a Heterogeneous Relation-Aware Transformer",
55+
authors: "T Huang, SA Rizvi, R Krishna Thakur, V Socrates, M Gupta, D Dijk, RA Taylor, R Ying",
56+
venue: "Preprint",
57+
code: null,
58+
paper: "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4904741",
59+
abstract: "We propose HEART, a pretrained language model for structured EHR data. HEART seamlessly encodes heterogeneous medical entity information through a novel relation embedding module and a multi-level attention scheme.",
60+
impact: "This novel pretrained framework, featuring a new architecture and dedicated objectives, can inspire future research on foundation models in EHR.",
61+
tags: [Tag.Applications],
62+
},
6363
{
6464
title: "Online Detection of Anomalies in Temporal Knowledge Graphs with Interpretability",
6565
authors: "Jiasheng Zhang, Rex Ying, Jie Shao",

0 commit comments

Comments
 (0)