Skip to content

Commit

Permalink
Merge pull request #323 from FluxML/doc
Browse files Browse the repository at this point in the history
Rearrange doc
  • Loading branch information
yuehhua authored Jul 27, 2022
2 parents 00bd166 + 61e8682 commit 10aaca8
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions docs/src/manual/graph_conv.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,26 @@ Reference: [Morris2019](@cite)

---

## SAmple and aggreGatE (GraphSAGE) Network

```math
\hat{\textbf{x}}_j = sample(\textbf{x}_j), \forall j \in \mathcal{N}(i) \\
\textbf{m}_i = aggregate(\hat{\textbf{x}}_j) \\
\textbf{x}_i' = \sigma (\Theta_1 \textbf{x}_i + \Theta_2 \textbf{m}_i)
```

```@docs
SAGEConv
MeanAggregator
MeanPoolAggregator
MaxPoolAggregator
LSTMAggregator
```

Reference: [Hamilton2017](@cite) and [GraphSAGE website](http://snap.stanford.edu/graphsage/)

---

## Graph Attentional Layer

```math
Expand Down Expand Up @@ -122,7 +142,7 @@ Reference: [Wang2019](@cite)
## Graph Isomorphism Network

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

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

Reference: [Xie2018](@cite)

---

## SAmple and aggreGatE (GraphSAGE) Network

```math
\hat{\textbf{x}}_j = sample(\textbf{x}_j), \forall j \in \mathcal{N}(i) \\
\textbf{m}_i = aggregate(\hat{\textbf{x}}_j) \\
\textbf{x}_i' = \sigma (\Theta_1 \textbf{x}_i + \Theta_2 \textbf{m}_i)
```

```@docs
SAGEConv
MeanAggregator
MeanPoolAggregator
MaxPoolAggregator
LSTMAggregator
```

Reference: [Hamilton2017](@cite) and [GraphSAGE website](http://snap.stanford.edu/graphsage/)

0 comments on commit 10aaca8

Please sign in to comment.