Skip to content

Correct VGAE doc #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/src/manual/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ Reference: [Variational Graph Auto-Encoders](https://arxiv.org/abs/1611.07308)
### Variational Graph Autoencoder

```math
X' = \sigma(\hat{D}^{-1/2} \hat{A} \hat{D}^{-1/2} X \Theta)
H = enc(X, A) \\
Z_{\mu}, Z_{logσ} = GCN_{\mu}(H, A), GCN_{\sigma}(H, A) \\
\hat{A} = \sigma (ZZ^T)
```

where ``\hat{A} = A + I``, ``A`` denotes the adjacency matrix, and
``\hat{D} = [\hat{d}_{ij}] = \sum_{j=0} [\hat{a}_{ij}]`` is degree matrix.
where ``A`` denotes the adjacency matrix, ``X`` denotes node features.

```@docs
VGAE
Expand Down Expand Up @@ -57,8 +58,8 @@ Reference: [Variational Graph Auto-Encoders](https://arxiv.org/abs/1611.07308)
### Variational Encoder

```math
H = f(X)
μ, logσ = μ(H), Σ(H)
H = enc(X, A) \\
Z_{\mu}, Z_{logσ} = GCN_{\mu}(H, A), GCN_{\sigma}(H, A)
```

```@docs
Expand Down