File tree 1 file changed +21
-21
lines changed
1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,26 @@ Reference: [Morris2019](@cite)
55
55
56
56
---
57
57
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
+
58
78
## Graph Attentional Layer
59
79
60
80
``` math
@@ -122,7 +142,7 @@ Reference: [Wang2019](@cite)
122
142
## Graph Isomorphism Network
123
143
124
144
``` 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)
126
146
```
127
147
128
148
where `` f_{\Theta} `` denotes a neural network parametrized by `` \Theta `` , * i.e.* , a MLP.
@@ -148,23 +168,3 @@ CGConv
148
168
```
149
169
150
170
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/ )
You can’t perform that action at this time.
0 commit comments