Week 13: Graph Neural Networks Flashcards

(6 cards)

1
Q

Shortly describe what is a GNN?

A

A GNN is an optimizable transformation on all attributes of the graph (nodes, edges, global-context) that preserves graph symmetries (permutation invariances)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the three main types of prediction tasks in GNNs?

A

Graph-level: Predict properties of entire graph (e.g., “Does molecule smell?”)
Node-level: Predict properties of individual nodes (e.g., Karate club allegiances)
Edge-level: Predict properties of edges or edge existence (e.g., relationship classification)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the three geometric priors of the GDL blueprint?

A

A:

Symmetry (Invariance/Equivariance): Output should be consistent under transformations
Geometric Stability: Stability to signal and domain deformations
Scale Separation: Multi-scale representation capability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Explain the mechanism of message passing in graph neural networks.

A

A: Message passing works in three steps:

Gather: Collect neighboring node embeddings (messages) for each node

Aggregate: Combine messages using aggregation function (sum, mean, max)

Update: Pass aggregated messages through learned neural network to update node representations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the two main approaches to graph convolution?

A

A:

Spectral-based:

Filter signals using eigendecompositions of graph Laplacian
Transform to spectral domain, filter, then inverse transform
Removes noise from graph signals

Spatial-based:

Filter by information propagation distance
Aggregate based on neighborhood structure
Direct aggregation of neighboring features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What made AlphaFold2 revolutionary?

A

A:

Solved 50-year protein folding challenge
Achieved breakthrough performance on CASP competition
Created comprehensive protein structure database
Won 2024 Nobel Prize in Chemistry
Enables drug discovery, understanding life processes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly