Skip to content

Commit

Permalink
Add GNNLux docstrings (#515)
Browse files Browse the repository at this point in the history
* Add ChebConv docstring

* Add GraphConv docstring

* Add AGNNConv dostring

* Add CGConv docstring

* Add EdgeConv docstring

* Add EGNNConv docstring

* Add DConv docstring

* Add GATConv docstring

* Add GATv2Conv doscting

* Add SGConv

* Add GatedGraphConv docs

* Add GINConv docs

* Add GMMConv docs

* Add MEGNetConv docs

* Add NNConv

* ResGatedGraphConv docs

* Add SAGEConv docs

* Add Table

* Add conv page
  • Loading branch information
aurorarossi authored Nov 9, 2024
1 parent 25b8872 commit b063263
Show file tree
Hide file tree
Showing 3 changed files with 949 additions and 32 deletions.
6 changes: 3 additions & 3 deletions GNNLux/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ makedocs(;
format = Documenter.HTML(; mathengine, prettyurls, assets = assets, size_threshold=nothing),
sitename = "GNNLux.jl",
pages = ["Home" => "index.md",
"Basic" => "api/basic.md"],
"API Reference" => [
"Basic" => "api/basic.md",
"Convolutional layers" => "api/conv.md"]]
)




deploydocs(;repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
devbranch = "master",
push_preview = true,
Expand Down
18 changes: 17 additions & 1 deletion GNNLux/docs/src/api/conv.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,24 @@ The table below lists all graph convolutional layers implemented in the *GNNLux.
- *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 |
| :-------- | :---: |:---: |:---: | :---: | :---: ||
| :-------- | :---: |:---: |:---: | :---: | :---: |
| [`AGNNConv`](@ref) | | || | |
| [`CGConv`](@ref) | | ||||
| [`ChebConv`](@ref) | | | | ||
| [`EGNNConv`](@ref) | | || | |
| [`EdgeConv`](@ref) | | | || |
| [`GATConv`](@ref) | | ||||
| [`GATv2Conv`](@ref) | | ||||
| [`GatedGraphConv`](@ref) || | | ||
| [`GCNConv`](@ref) ||| || |
| [`GINConv`](@ref) || | |||
| [`GMMConv`](@ref) | | || | |
| [`GraphConv`](@ref) || | |||
| [`MEGNetConv`](@ref) | | || | |
| [`NNConv`](@ref) | | || | |
| [`ResGatedGraphConv`](@ref) | | | |||
| [`SAGEConv`](@ref) || | |||
| [`SGConv`](@ref) || | | ||

## Docs

Expand Down
Loading

0 comments on commit b063263

Please sign in to comment.