Graph Neural Networks

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

Adjacency Matrix

How we define a graph in neural networks

2
New cards

Main idea for graphical neural networks

Learning the representation of the nodes so we can extract the features

3
New cards

Node Embeddings

Map nodes so that the similarity (dot product) in the embedding space approximates similarity

4
New cards

Deep Graph Encoder

Deep methods based on Graph Neural Networks

5
New cards

Information Propogation

Each node collects information from their neighbors, this helps us develop the computation graph

<p>Each node collects information from their neighbors, this helps us develop the computation graph<br><br></p>
6
New cards

How to develop a computation graph

Aggregate information from neighbors to generate node embeddings

For example, A

  • We find the mean average of the weights/information of the neighbors of A

  • We then multiply the information by the weight matrix, and finally apply the activation function

<p>Aggregate information from neighbors to generate node embeddings</p><p>For example, A</p><ul><li><p>We find the mean average of the weights/information of the neighbors of A</p></li><li><p>We then multiply the information by the weight matrix, and finally apply the activation function</p></li></ul><p></p>