-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae58c08
commit 94c13c3
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,6 @@ CurrentModule = GNNLux | |
|
||
## GNNLayer | ||
```@docs | ||
GNNLux.GNNLayer | ||
GNNLayer | ||
GNNChain | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
```@meta | ||
CurrentModule = GNNLux | ||
``` | ||
|
||
# Convolutional Layers | ||
|
||
Many different types of graphs convolutional layers have been proposed in the literature. Choosing the right layer for your application could involve a lot of exploration. | ||
Multiple graph convolutional layers are typically stacked together to create a graph neural network model (see [`GNNChain`](@ref)). | ||
|
||
The table below lists all graph convolutional layers implemented in the *GNNLux.jl*. It also highlights the presence of some additional capabilities with respect to basic message passing: | ||
- *Sparse Ops*: implements message passing as multiplication by sparse adjacency matrix instead of the gather/scatter mechanism. This can lead to better CPU performances but it is not supported on GPU yet. | ||
- *Edge Weight*: supports scalar weights (or equivalently scalar features) on edges. | ||
- *Edge Features*: supports feature vectors on edges. | ||
- *Heterograph*: supports heterogeneous graphs (see [`GNNHeteroGraph`](@ref)). | ||
- *TemporalSnapshotsGNNGraphs*: supports temporal graphs (see [`TemporalSnapshotsGNNGraph`](@ref)) by applying the convolution layers to each snapshot independently. | ||
|
||
| Layer |Sparse Ops|Edge Weight|Edge Features| Heterograph | TemporalSnapshotsGNNGraphs | | ||
| :-------- | :---: |:---: |:---: | :---: | :---: | ✓ | | ||
| [`GCNConv`](@ref) | ✓ | ✓ | | ✓ | | | ||
|
||
## Docs | ||
|
||
```@autodocs | ||
Modules = [GraphNeuralNetworks] | ||
Pages = ["layers/conv.jl"] | ||
Private = false | ||
``` |