@@ -14,14 +14,14 @@ A generic message passing on graph takes the form
14
14
where we refer to `` \phi `` as to the message function,
15
15
and to `` \gamma_x `` and `` \gamma_e `` as to the node update and edge update function
16
16
respectively. The aggregation `` \square `` is over the neighborhood `` N(i) `` of node `` i `` ,
17
- and it is usually set to summation `` \sum `` , a max or a mean operation.
17
+ and it is usually equal either to `` \sum `` , to ` max ` or to a ` mean ` operation.
18
18
19
19
In GNN.jl, the function [ ` propagate ` ] ( @ref ) takes care of materializing the
20
20
node features on each edge, applying the message function, performing the
21
21
aggregation, and returning `` \bar{\mathbf{m}} `` .
22
22
It is then left to the user to perform further node and edge updates,
23
- manypulating arrays of size `` D_{node} \times num_nodes `` and
24
- `` D_{edge} \times num_edges `` .
23
+ manypulating arrays of size `` D_{node} \times num\_nodes `` and
24
+ `` D_{edge} \times num\_edges `` .
25
25
26
26
As part of the [ ` propagate ` ] ( @ref ) pipeline, we have the function
27
27
[ ` apply_edges ` ] ( @ref ) . It can be independently used to materialize
@@ -34,9 +34,9 @@ and [`NNlib.scatter`](@ref) methods.
34
34
35
35
## Examples
36
36
37
- ### Basic use propagate and apply_edges
38
-
37
+ ### Basic use of propagate and apply_edges
39
38
39
+ TODO
40
40
41
41
### Implementing a custom Graph Convolutional Layer
42
42
0 commit comments