Skip to content

Commit 61e8682

Browse files
committed
rearrange doc
1 parent 00bd166 commit 61e8682

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

docs/src/manual/graph_conv.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,26 @@ Reference: [Morris2019](@cite)
5555

5656
---
5757

58+
## SAmple and aggreGatE (GraphSAGE) Network
59+
60+
```math
61+
\hat{\textbf{x}}_j = sample(\textbf{x}_j), \forall j \in \mathcal{N}(i) \\
62+
\textbf{m}_i = aggregate(\hat{\textbf{x}}_j) \\
63+
\textbf{x}_i' = \sigma (\Theta_1 \textbf{x}_i + \Theta_2 \textbf{m}_i)
64+
```
65+
66+
```@docs
67+
SAGEConv
68+
MeanAggregator
69+
MeanPoolAggregator
70+
MaxPoolAggregator
71+
LSTMAggregator
72+
```
73+
74+
Reference: [Hamilton2017](@cite) and [GraphSAGE website](http://snap.stanford.edu/graphsage/)
75+
76+
---
77+
5878
## Graph Attentional Layer
5979

6080
```math
@@ -122,7 +142,7 @@ Reference: [Wang2019](@cite)
122142
## Graph Isomorphism Network
123143

124144
```math
125-
\textbf{x}_i' = f_{\Theta}\left((1 + \epsilon) \dot \textbf{x}_i + \sum_{j \in \mathcal{N}(i)} \textbf{x}_j \right)
145+
\textbf{x}_i' = f_{\Theta}\left((1 + \varepsilon) \cdot \textbf{x}_i + \sum_{j \in \mathcal{N}(i)} \textbf{x}_j \right)
126146
```
127147

128148
where ``f_{\Theta}`` denotes a neural network parametrized by ``\Theta``, *i.e.*, a MLP.
@@ -148,23 +168,3 @@ CGConv
148168
```
149169

150170
Reference: [Xie2018](@cite)
151-
152-
---
153-
154-
## SAmple and aggreGatE (GraphSAGE) Network
155-
156-
```math
157-
\hat{\textbf{x}}_j = sample(\textbf{x}_j), \forall j \in \mathcal{N}(i) \\
158-
\textbf{m}_i = aggregate(\hat{\textbf{x}}_j) \\
159-
\textbf{x}_i' = \sigma (\Theta_1 \textbf{x}_i + \Theta_2 \textbf{m}_i)
160-
```
161-
162-
```@docs
163-
SAGEConv
164-
MeanAggregator
165-
MeanPoolAggregator
166-
MaxPoolAggregator
167-
LSTMAggregator
168-
```
169-
170-
Reference: [Hamilton2017](@cite) and [GraphSAGE website](http://snap.stanford.edu/graphsage/)

0 commit comments

Comments
 (0)